aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-09 17:19:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-09 17:19:06 -0300
commit8e1e61860643baeb443efcdbf51bc25b0c006a88 (patch)
tree68a66e04c459311cf7d7b13c4f1655d73e9da8e4 /lua.c
parentaf4721f7a37834e5b5469f342caed0629932a4aa (diff)
downloadlua-8e1e61860643baeb443efcdbf51bc25b0c006a88.tar.gz
lua-8e1e61860643baeb443efcdbf51bc25b0c006a88.tar.bz2
lua-8e1e61860643baeb443efcdbf51bc25b0c006a88.zip
`baselib' splited in `baselib' and `tablib'
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.c b/lua.c
index d9d8a4f0..03cfbb9d 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.80 2002/04/01 14:42:33 roberto Exp roberto $ 2** $Id: lua.c,v 1.81 2002/04/05 18:54: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*/
@@ -342,6 +342,7 @@ static void register_getargs (char *argv[]) {
342 342
343static void openstdlibs (lua_State *l) { 343static void openstdlibs (lua_State *l) {
344 lua_baselibopen(l); 344 lua_baselibopen(l);
345 lua_tablibopen(l);
345 lua_iolibopen(l); 346 lua_iolibopen(l);
346 lua_strlibopen(l); 347 lua_strlibopen(l);
347 lua_mathlibopen(l); 348 lua_mathlibopen(l);