| 804 | |
| 805 | |
| 806 | LUA_API void lua_setglobal (lua_State *L, const char *name) { |
| 807 | Table *reg = hvalue(&G(L)->l_registry); |
| 808 | lua_lock(L); /* unlock done in 'auxsetstr' */ |
| 809 | auxsetstr(L, luaH_getint(reg, LUA_RIDX_GLOBALS), name); |
| 810 | } |
| 811 | |
| 812 | |
| 813 | LUA_API void lua_settable (lua_State *L, int idx) { |
no test coverage detected