summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-11 09:24:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-11 09:24:34 -0300
commit034de1fe73c24dcb75658b4c9ab16dd012ba3057 (patch)
tree8f1c1fecd4321bfda68aee97b8bb54d59b22c935 /lua.c
parent430d6db92827ae2797f435dd5019b5cd115859ef (diff)
downloadlua-034de1fe73c24dcb75658b4c9ab16dd012ba3057.tar.gz
lua-034de1fe73c24dcb75658b4c9ab16dd012ba3057.tar.bz2
lua-034de1fe73c24dcb75658b4c9ab16dd012ba3057.zip
new names for functions that open C libraries
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lua.c b/lua.c
index 7a248bf8..9c1a9097 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.116 2003/01/29 13:23:45 roberto Exp roberto $ 2** $Id: lua.c,v 1.117 2003/03/07 13:21:31 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -67,12 +67,12 @@ static const char *progname = PROGNAME;
67 67
68 68
69static const luaL_reg lualibs[] = { 69static const luaL_reg lualibs[] = {
70 {"baselib", lua_baselibopen}, 70 {"base", luaopen_base},
71 {"tablib", lua_tablibopen}, 71 {"table", luaopen_table},
72 {"iolib", lua_iolibopen}, 72 {"io", luaopen_io},
73 {"strlib", lua_strlibopen}, 73 {"string", luaopen_string},
74 {"mathlib", lua_mathlibopen}, 74 {"math", luaopen_math},
75 {"dblib", lua_dblibopen}, 75 {"debug", luaopen_debug},
76 /* add your libraries here */ 76 /* add your libraries here */
77 LUA_EXTRALIBS 77 LUA_EXTRALIBS
78 {NULL, NULL} 78 {NULL, NULL}
@@ -372,7 +372,7 @@ static int handle_argv (char *argv[], int *interactive) {
372 372
373static void openstdlibs (lua_State *l) { 373static void openstdlibs (lua_State *l) {
374 const luaL_reg *lib = lualibs; 374 const luaL_reg *lib = lualibs;
375 for (; lib->name; lib++) { 375 for (; lib->func; lib++) {
376 lib->func(l); /* open library */ 376 lib->func(l); /* open library */
377 lua_settop(l, 0); /* discard any results */ 377 lua_settop(l, 0); /* discard any results */
378 } 378 }