| 195 | */ |
| 196 | |
| 197 | static void setfield (lua_State *L, const char *key, int value) { |
| 198 | lua_pushinteger(L, value); |
| 199 | lua_setfield(L, -2, key); |
| 200 | } |
| 201 | |
| 202 | static void setboolfield (lua_State *L, const char *key, int value) { |
| 203 | if (value < 0) /* undefined? */ |
no test coverage detected