| 863 | |
| 864 | |
| 865 | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) { |
| 866 | lua_lock(L); /* unlock done in 'auxsetstr' */ |
| 867 | auxsetstr(L, index2value(L, idx), k); |
| 868 | } |
| 869 | |
| 870 | |
| 871 | LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) { |
no test coverage detected