diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-10 15:06:58 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-10 15:06:58 -0300 |
commit | c7b4f447724a7bf64e9522aeaf461cab32a7d023 (patch) | |
tree | ac6db6a2465b865b20e279ab088f9961018fd1f8 /linit.c | |
parent | 44b19075c0fa4310d312147ee1d74dc11ff36eba (diff) | |
download | lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.tar.gz lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.tar.bz2 lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.zip |
correct name to open package library
Diffstat (limited to 'linit.c')
-rw-r--r-- | linit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.10 2005/03/08 13:37:55 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.11 2005/04/13 17:24:20 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c | 3 | ** Initialization of libraries for lua.c |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -22,7 +22,7 @@ static const luaL_reg lualibs[] = { | |||
22 | {LUA_STRLIBNAME, luaopen_string}, | 22 | {LUA_STRLIBNAME, luaopen_string}, |
23 | {LUA_MATHLIBNAME, luaopen_math}, | 23 | {LUA_MATHLIBNAME, luaopen_math}, |
24 | {LUA_DBLIBNAME, luaopen_debug}, | 24 | {LUA_DBLIBNAME, luaopen_debug}, |
25 | {LUA_LOADLIBNAME, luaopen_loadlib}, | 25 | {LUA_LOADLIBNAME, luaopen_package}, |
26 | {NULL, NULL} | 26 | {NULL, NULL} |
27 | }; | 27 | }; |
28 | 28 | ||