aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 5ef55355..b6ade7c7 100644
--- a/lstate.h
+++ b/lstate.h
@@ -307,6 +307,7 @@ struct lua_State {
307 StkId stack_last; /* end of stack (last element + 1) */ 307 StkId stack_last; /* end of stack (last element + 1) */
308 StkId stack; /* stack base */ 308 StkId stack; /* stack base */
309 UpVal *openupval; /* list of open upvalues in this stack */ 309 UpVal *openupval; /* list of open upvalues in this stack */
310 StkId tbclist; /* list of to-be-closed variables */
310 GCObject *gclist; 311 GCObject *gclist;
311 struct lua_State *twups; /* list of threads with open upvalues */ 312 struct lua_State *twups; /* list of threads with open upvalues */
312 struct lua_longjmp *errorJmp; /* current error recover point */ 313 struct lua_longjmp *errorJmp; /* current error recover point */
@@ -318,7 +319,6 @@ struct lua_State {
318 int basehookcount; 319 int basehookcount;
319 int hookcount; 320 int hookcount;
320 volatile l_signalT hookmask; 321 volatile l_signalT hookmask;
321 StkId ptbc; /* pending to-be-closed variable */
322}; 322};
323 323
324 324