| 900 | |
| 901 | |
| 902 | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) { |
| 903 | lua_lock(L); /* unlock done in 'auxsetstr' */ |
| 904 | auxsetstr(L, index2value(L, idx), k); |
| 905 | } |
| 906 | |
| 907 | |
| 908 | LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) { |
no test coverage detected