diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.25 2006/07/11 15:53:29 roberto Exp $ | 2 | ** $Id: lstate.h,v 2.26 2006/08/15 19:59:20 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 | */ |
@@ -107,6 +107,7 @@ struct lua_State { | |||
107 | global_State *l_G; | 107 | global_State *l_G; |
108 | CallInfo *ci; /* call info for current function */ | 108 | CallInfo *ci; /* call info for current function */ |
109 | const Instruction *savedpc; /* `savedpc' of current function */ | 109 | const Instruction *savedpc; /* `savedpc' of current function */ |
110 | const Instruction *oldpc; /* last pc traced */ | ||
110 | StkId stack_last; /* last free slot in the stack */ | 111 | StkId stack_last; /* last free slot in the stack */ |
111 | StkId stack; /* stack base */ | 112 | StkId stack; /* stack base */ |
112 | CallInfo *end_ci; /* points after end of ci array*/ | 113 | CallInfo *end_ci; /* points after end of ci array*/ |