| 697 | |
| 698 | |
| 699 | LUA_API int lua_getglobal (lua_State *L, const char *name) { |
| 700 | TValue gt; |
| 701 | lua_lock(L); |
| 702 | getGlobalTable(L, >); |
| 703 | return auxgetstr(L, >, name); |
| 704 | } |
| 705 | |
| 706 | |
| 707 | LUA_API int lua_gettable (lua_State *L, int idx) { |
no test coverage detected