| 869 | |
| 870 | |
| 871 | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) { |
| 872 | lua_lock(L); /* unlock done in 'auxsetstr' */ |
| 873 | auxsetstr(L, index2value(L, idx), k); |
| 874 | } |
| 875 | |
| 876 | |
| 877 | LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) { |
no test coverage detected