From 71c716e5a88a6993369505c79cd1383ef27366c4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Mar 2002 09:45:00 -0300 Subject: avoid C identifiers beginning with '_' --- lstate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 48293f05..af56ee40 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.77 2002/02/14 21:47:29 roberto Exp roberto $ +** $Id: lstate.h,v 1.78 2002/03/07 18:11:51 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -132,7 +132,7 @@ struct lua_State { StkId stack; /* stack base */ CallInfo *end_ci; /* points after end of ci array*/ CallInfo *base_ci; /* array of CallInfo's */ - global_State *_G; + global_State *l_G; struct lua_longjmp *errorJmp; /* current error recover point */ UpVal *openupval; /* list of open upvalues in this stack */ lua_State *next; /* circular double linked list of states */ @@ -145,7 +145,7 @@ struct lua_State { }; -#define G(L) (L->_G) +#define G(L) (L->l_G) void luaE_closethread (lua_State *OL, lua_State *L); -- cgit v1.2.3-55-g6feb