summaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 18:28:22 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-26 18:28:22 -0200
commite962330df9311515cf414097cd077ab93a928089 (patch)
treea4c7b306661797f130aadd57870f2c19ffbca715 /lstate.h
parentb291e5000612cff5fd9d80fe242236e846c17eb2 (diff)
downloadlua-e962330df9311515cf414097cd077ab93a928089.tar.gz
lua-e962330df9311515cf414097cd077ab93a928089.tar.bz2
lua-e962330df9311515cf414097cd077ab93a928089.zip
"stacklimit" is not necessary.
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index dc3a456b..83117949 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.1 1997/11/19 17:30:36 roberto Exp roberto $ 2** $Id: lstate.h,v 1.2 1997/11/21 19:00:46 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -47,7 +47,6 @@ struct ref {
47typedef struct LState { 47typedef struct LState {
48 struct Stack stack; /* Lua stack */ 48 struct Stack stack; /* Lua stack */
49 struct C_Lua_Stack Cstack; /* C2lua struct */ 49 struct C_Lua_Stack Cstack; /* C2lua struct */
50 int stacklimit; /* limit for stack overflow */
51 void *errorJmp; /* current error recover point */ 50 void *errorJmp; /* current error recover point */
52 TObject errorim; /* error tag method */ 51 TObject errorim; /* error tag method */
53 struct C_Lua_Stack Cblocks[MAX_C_BLOCKS]; 52 struct C_Lua_Stack Cblocks[MAX_C_BLOCKS];