From f76f4cb79d84af4a7be9e0d75553bbe05a3ae90c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 15 Jul 2009 14:26:14 -0300 Subject: new way to control stack overflow, controling only total size of the stack --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 783e51cf..2ddffaf1 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.44 2009/06/01 19:09:26 roberto Exp roberto $ +** $Id: lstate.h,v 2.45 2009/06/18 18:59:18 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -163,7 +163,6 @@ struct lua_State { StkId top; /* first free slot in the stack */ global_State *l_G; CallInfo *ci; /* call info for current function */ - int nci; /* number of total CallInfo structures linked */ const Instruction *oldpc; /* last pc traced */ StkId stack_last; /* last free slot in the stack */ StkId stack; /* stack base */ -- cgit v1.2.3-55-g6feb