diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.114 2010/11/26 14:32:31 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.115 2010/12/10 13:40:22 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -853,7 +853,7 @@ static int loadlib (lua_State *L) { | |||
853 | lua_State *L1 = getstate(L); | 853 | lua_State *L1 = getstate(L); |
854 | int i; | 854 | int i; |
855 | luaL_requiref(L1, "package", luaopen_package, 1); | 855 | luaL_requiref(L1, "package", luaopen_package, 1); |
856 | luaL_findtable(L1, LUA_REGISTRYINDEX, "_PRELOAD"); | 856 | luaL_getsubtable(L1, LUA_REGISTRYINDEX, "_PRELOAD"); |
857 | for (i = 0; libs[i].name; i++) { | 857 | for (i = 0; libs[i].name; i++) { |
858 | lua_pushcfunction(L1, libs[i].func); | 858 | lua_pushcfunction(L1, libs[i].func); |
859 | lua_setfield(L1, -2, libs[i].name); | 859 | lua_setfield(L1, -2, libs[i].name); |