diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-09 17:19:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-04-09 17:19:06 -0300 |
commit | 8e1e61860643baeb443efcdbf51bc25b0c006a88 (patch) | |
tree | 68a66e04c459311cf7d7b13c4f1655d73e9da8e4 /lua.c | |
parent | af4721f7a37834e5b5469f342caed0629932a4aa (diff) | |
download | lua-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||
343 | static void openstdlibs (lua_State *l) { | 343 | static 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); |