| 13520 | */ |
| 13521 | |
| 13522 | static void setfield (lua_State *L, const char *key, int value) { |
| 13523 | lua_pushinteger(L, value); |
| 13524 | lua_setfield(L, -2, key); |
| 13525 | } |
| 13526 | |
| 13527 | static void setboolfield (lua_State *L, const char *key, int value) { |
| 13528 | if (value < 0) /* undefined? */ |
no test coverage detected