diff options
Diffstat (limited to '')
-rw-r--r-- | lstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -286,7 +286,6 @@ struct lua_State { | |||
286 | StkId top; /* first free slot in the stack */ | 286 | StkId top; /* first free slot in the stack */ |
287 | global_State *l_G; | 287 | global_State *l_G; |
288 | CallInfo *ci; /* call info for current function */ | 288 | CallInfo *ci; /* call info for current function */ |
289 | const Instruction *oldpc; /* last pc traced */ | ||
290 | StkId stack_last; /* last free slot in the stack */ | 289 | StkId stack_last; /* last free slot in the stack */ |
291 | StkId stack; /* stack base */ | 290 | StkId stack; /* stack base */ |
292 | UpVal *openupval; /* list of open upvalues in this stack */ | 291 | UpVal *openupval; /* list of open upvalues in this stack */ |
@@ -297,6 +296,7 @@ struct lua_State { | |||
297 | volatile lua_Hook hook; | 296 | volatile lua_Hook hook; |
298 | ptrdiff_t errfunc; /* current error handling function (stack index) */ | 297 | ptrdiff_t errfunc; /* current error handling function (stack index) */ |
299 | l_uint32 nCcalls; /* number of allowed nested C calls - 'nci' */ | 298 | l_uint32 nCcalls; /* number of allowed nested C calls - 'nci' */ |
299 | int oldpc; /* last pc traced */ | ||
300 | int stacksize; | 300 | int stacksize; |
301 | int basehookcount; | 301 | int basehookcount; |
302 | int hookcount; | 302 | int hookcount; |