summaryrefslogtreecommitdiff
path: root/src/lstate.c
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2004-12-30 12:00:00 +0000
committerrepogen <>2004-12-30 12:00:00 +0000
commite2493a40ee611d5a718fd2a81fe67e24c04c91a0 (patch)
tree0dca96133b3cd52d262dfa2592ad076fc0ea7852 /src/lstate.c
parent226f7859b5392b6680b7e703f9cc7f7f101fd365 (diff)
downloadlua-github-5.1-work4.tar.gz
Lua 5.1-work45.1-work4
Diffstat (limited to 'src/lstate.c')
-rw-r--r--src/lstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lstate.c b/src/lstate.c
index dfd35be6..bd238c58 100644
--- a/src/lstate.c
+++ b/src/lstate.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.c,v 2.18 2004/12/06 17:53:42 roberto Exp $
+** $Id: lstate.c,v 2.19 2004/12/13 12:15:11 roberto Exp $
** Global State
** See Copyright Notice in lua.h
*/
@@ -193,7 +193,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
setnilvalue(gval(g->dummynode));
gnext(g->dummynode) = NULL;
g->totalbytes = sizeof(LG);
- g->stepmul = STEPMUL;
+ g->gcpace = GCDIV;
g->incgc = 1;
if (luaD_rawrunprotected(L, f_luaopen, NULL) != 0) {
/* memory allocation error: free partial state */