From 2b3ea61342c544aadfe5ea02345e4a53c889c676 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 29 Nov 1999 17:12:07 -0200 Subject: [PATCH] mistake in change for multi-state (gc threshold was not corrected) --- lstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lstate.c b/lstate.c index d996420a..26a7ae68 100644 --- a/lstate.c +++ b/lstate.c @@ -1,5 +1,5 @@ /* -** $Id: lstate.c,v 1.16 1999/11/10 15:39:35 roberto Exp roberto $ +** $Id: lstate.c,v 1.17 1999/11/22 13:12:07 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -51,8 +51,8 @@ lua_State *lua_newstate (void) { luaX_init(L); luaT_init(L); luaB_predefine(L); - return L; L->GCthreshold = L->nblocks*4; + return L; }