aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-11 09:45:00 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-11 09:45:00 -0300
commit71c716e5a88a6993369505c79cd1383ef27366c4 (patch)
treec8b32cf297e5a6faca854c527fd9ea2056f615db /lstate.h
parent51ad2f11623c25874b6a0e721e0597df784068ff (diff)
downloadlua-71c716e5a88a6993369505c79cd1383ef27366c4.tar.gz
lua-71c716e5a88a6993369505c79cd1383ef27366c4.tar.bz2
lua-71c716e5a88a6993369505c79cd1383ef27366c4.zip
avoid C identifiers beginning with '_'
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 48293f05..af56ee40 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.77 2002/02/14 21:47:29 roberto Exp roberto $ 2** $Id: lstate.h,v 1.78 2002/03/07 18:11:51 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*/
@@ -132,7 +132,7 @@ struct lua_State {
132 StkId stack; /* stack base */ 132 StkId stack; /* stack base */
133 CallInfo *end_ci; /* points after end of ci array*/ 133 CallInfo *end_ci; /* points after end of ci array*/
134 CallInfo *base_ci; /* array of CallInfo's */ 134 CallInfo *base_ci; /* array of CallInfo's */
135 global_State *_G; 135 global_State *l_G;
136 struct lua_longjmp *errorJmp; /* current error recover point */ 136 struct lua_longjmp *errorJmp; /* current error recover point */
137 UpVal *openupval; /* list of open upvalues in this stack */ 137 UpVal *openupval; /* list of open upvalues in this stack */
138 lua_State *next; /* circular double linked list of states */ 138 lua_State *next; /* circular double linked list of states */
@@ -145,7 +145,7 @@ struct lua_State {
145}; 145};
146 146
147 147
148#define G(L) (L->_G) 148#define G(L) (L->l_G)
149 149
150 150
151void luaE_closethread (lua_State *OL, lua_State *L); 151void luaE_closethread (lua_State *OL, lua_State *L);