From cd3d44695775631271d9d038247fe64092f13f33 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 6 Oct 2000 16:28:47 -0300 Subject: detail --- lstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.c') diff --git a/lstate.c b/lstate.c index e4e0bc33..9a3df644 100644 --- a/lstate.c +++ b/lstate.c @@ -1,5 +1,5 @@ /* -** $Id: lstate.c,v 1.42 2000/09/29 12:42:13 roberto Exp roberto $ +** $Id: lstate.c,v 1.43 2000/10/05 13:00:17 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -89,7 +89,7 @@ lua_State *lua_open (int stacksize) { lua_close(L); return NULL; } - L->GCthreshold = L->nblocks*4; + L->GCthreshold = 2*L->nblocks; return L; } -- cgit v1.2.3-55-g6feb