| 86 | */ |
| 87 | |
| 88 | static void setfield (lua_State *L, const char *key, int value) { |
| 89 | lua_pushinteger(L, value); |
| 90 | lua_setfield(L, -2, key); |
| 91 | } |
| 92 | |
| 93 | static void setboolfield (lua_State *L, const char *key, int value) { |
| 94 | if (value < 0) /* undefined? */ |
no test coverage detected