summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-06 09:41:28 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-06 09:41:28 -0200
commit968ad49da6522c1cf413bd86323a613176d12c07 (patch)
tree6961b75297c9533963f3b2d7db4f06900ed4f9f7 /lua.c
parent1fdb445e7dae6d08b67e46e1979f285b38bbc18d (diff)
downloadlua-github-968ad49da6522c1cf413bd86323a613176d12c07.tar.gz
`lua_newstate' gets the inital stack size and other arguments
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index d3d716f2..7956ede9 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
/*
-** $Id: lua.c,v 1.26 1999/11/16 12:50:48 roberto Exp roberto $
+** $Id: lua.c,v 1.27 1999/11/22 13:12:07 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -91,6 +91,7 @@ static void assign (char *arg) {
static void getargs (int argc, char *argv[]) {
+ lua_beginblock(); {
int i, j;
lua_Object args = lua_createtable();
lua_pushobject(args);
@@ -108,6 +109,7 @@ static void getargs (int argc, char *argv[]) {
/* arg.nn = minimum index in table `arg' */
lua_pushobject(args); lua_pushstring("nn");
lua_pushnumber(-i); lua_settable();
+ } lua_endblock();
}
@@ -146,7 +148,7 @@ static void manual_input (int prompt) {
int main (int argc, char *argv[]) {
int i;
- lua_open();
+ lua_state = lua_newstate("stack", 1024, "builtin", 1, NULL);
lua_pushstring("> "); lua_setglobal("_PROMPT");
lua_userinit();
getargs(argc, argv);