diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 2.43 2009/04/17 22:00:01 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 2.44 2009/06/01 19:09:26 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 | */ |
@@ -148,9 +148,9 @@ typedef struct global_State { | |||
148 | TValue l_registry; | 148 | TValue l_registry; |
149 | struct lua_State *mainthread; | 149 | struct lua_State *mainthread; |
150 | UpVal uvhead; /* head of double-linked list of all open upvalues */ | 150 | UpVal uvhead; /* head of double-linked list of all open upvalues */ |
151 | const lua_Number *version; /* pointer to version number */ | ||
151 | struct Table *mt[NUM_TAGS]; /* metatables for basic types */ | 152 | struct Table *mt[NUM_TAGS]; /* metatables for basic types */ |
152 | TString *tmname[TM_N]; /* array with tag-method names */ | 153 | TString *tmname[TM_N]; /* array with tag-method names */ |
153 | const TValue *nilobjp; /* pointer to nil object (to check consistency) */ | ||
154 | } global_State; | 154 | } global_State; |
155 | 155 | ||
156 | 156 | ||