| 827 | |
| 828 | |
| 829 | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) { |
| 830 | lua_lock(L); /* unlock done in 'auxsetstr' */ |
| 831 | auxsetstr(L, index2value(L, idx), k); |
| 832 | } |
| 833 | |
| 834 | |
| 835 | LUA_API void lua_seti (lua_State *L, int idx, lua_Integer n) { |
no test coverage detected