diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-06-03 17:16:16 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-06-03 17:16:16 -0300 |
commit | eca9fa02d2887d06cee5e2f742f7e3031ac76a51 (patch) | |
tree | d3ed46b827c28728ddc2a974391da76af6f990ec /lstate.h | |
parent | e33d7bae45f5b29f83f893ba16a7f78d28b77245 (diff) | |
download | lua-eca9fa02d2887d06cee5e2f742f7e3031ac76a51.tar.gz lua-eca9fa02d2887d06cee5e2f742f7e3031ac76a51.tar.bz2 lua-eca9fa02d2887d06cee5e2f742f7e3031ac76a51.zip |
small improvement
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 | /* |