diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-05-01 10:37:11 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-05-01 10:37:11 -0300 |
| commit | 71c2eeff987d8e96cf1aaf98f3512c686eb1bd9c (patch) | |
| tree | fbb1a626955b8c6282188438ad3bab50e0cdab81 /linit.c | |
| parent | d7bc346d7a9da097e517fa987ed6cc4f91874111 (diff) | |
| download | lua-github-71c2eeff987d8e96cf1aaf98f3512c686eb1bd9c.tar.gz | |
comments
Diffstat (limited to 'linit.c')
| -rw-r--r-- | linit.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* -** $Id: linit.c,v 1.15 2007/06/22 16:59:11 roberto Exp roberto $ +** $Id: linit.c,v 1.16 2008/01/02 16:16:28 roberto Exp roberto $ ** Initialization of libraries for lua.c ** See Copyright Notice in lua.h */ @@ -15,7 +15,7 @@ /* -** these libs are preloaded in Lua and are readily available to any program +** these libs are loaded by lua.c and are readily available to any program */ static const luaL_Reg lualibs[] = { {"_G", luaopen_base}, @@ -30,7 +30,7 @@ static const luaL_Reg lualibs[] = { /* -** these libs must be required before used +** these libs are preloaded and must be required before used */ static const luaL_Reg luareqlibs[] = { {LUA_DBLIBNAME, luaopen_debug}, @@ -39,12 +39,14 @@ static const luaL_Reg luareqlibs[] = { LUALIB_API void luaL_openlibs (lua_State *L) { + /* call open functions from 'lualibs' */ const luaL_Reg *lib = lualibs; for (; lib->func; lib++) { lua_pushcfunction(L, lib->func); lua_pushstring(L, lib->name); lua_call(L, 1, 0); } + /* add open functions from 'luareqlibs' into 'package.preload' table */ lib = luareqlibs; luaL_findtable(L, LUA_GLOBALSINDEX, "package.preload", 0); for (; lib->func; lib++) { |
