diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.20 2005/04/25 19:24:10 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.21 2005/05/05 15:34:03 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 | */ |
@@ -101,7 +101,7 @@ struct lua_State { | |||
101 | CommonHeader; | 101 | CommonHeader; |
102 | StkId top; /* first free slot in the stack */ | 102 | StkId top; /* first free slot in the stack */ |
103 | StkId base; /* base of current function */ | 103 | StkId base; /* base of current function */ |
104 | global_State *l_G; | 104 | global_State *_G; |
105 | CallInfo *ci; /* call info for current function */ | 105 | CallInfo *ci; /* call info for current function */ |
106 | const Instruction *savedpc; /* `savedpc' of current function */ | 106 | const Instruction *savedpc; /* `savedpc' of current function */ |
107 | StkId stack_last; /* last free slot in the stack */ | 107 | StkId stack_last; /* last free slot in the stack */ |
@@ -126,7 +126,7 @@ struct lua_State { | |||
126 | }; | 126 | }; |
127 | 127 | ||
128 | 128 | ||
129 | #define G(L) (L->l_G) | 129 | #define G(L) (L->_G) |
130 | 130 | ||
131 | 131 | ||
132 | /* | 132 | /* |