diff options
Diffstat (limited to 'lua.c')
-rw-r--r-- | lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.63 2001/02/23 17:28:12 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.64 2001/02/23 20:28:26 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 | */ |
@@ -327,7 +327,7 @@ int main (int argc, l_char *argv[]) { | |||
327 | int status; | 327 | int status; |
328 | opt.toclose = 0; | 328 | opt.toclose = 0; |
329 | getstacksize(argc, argv, &opt); /* handle option `-s' */ | 329 | getstacksize(argc, argv, &opt); /* handle option `-s' */ |
330 | L = lua_open(NULL, opt.stacksize); /* create state */ | 330 | L = lua_open(opt.stacksize); /* create state */ |
331 | LUA_USERINIT(L); /* open libraries */ | 331 | LUA_USERINIT(L); /* open libraries */ |
332 | register_getargs(argv); /* create `getargs' function */ | 332 | register_getargs(argv); /* create `getargs' function */ |
333 | status = handle_argv(argv+1, &opt); | 333 | status = handle_argv(argv+1, &opt); |