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-github-034de1fe73c24dcb75658b4c9ab16dd012ba3057.tar.gz
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 @@
/*
-** $Id: lua.c,v 1.116 2003/01/29 13:23:45 roberto Exp roberto $
+** $Id: lua.c,v 1.117 2003/03/07 13:21:31 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -67,12 +67,12 @@ static const char *progname = PROGNAME;
static const luaL_reg lualibs[] = {
- {"baselib", lua_baselibopen},
- {"tablib", lua_tablibopen},
- {"iolib", lua_iolibopen},
- {"strlib", lua_strlibopen},
- {"mathlib", lua_mathlibopen},
- {"dblib", lua_dblibopen},
+ {"base", luaopen_base},
+ {"table", luaopen_table},
+ {"io", luaopen_io},
+ {"string", luaopen_string},
+ {"math", luaopen_math},
+ {"debug", luaopen_debug},
/* add your libraries here */
LUA_EXTRALIBS
{NULL, NULL}
@@ -372,7 +372,7 @@ static int handle_argv (char *argv[], int *interactive) {
static void openstdlibs (lua_State *l) {
const luaL_reg *lib = lualibs;
- for (; lib->name; lib++) {
+ for (; lib->func; lib++) {
lib->func(l); /* open library */
lua_settop(l, 0); /* discard any results */
}