diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.82 2002/04/10 12:11:07 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.83 2002/04/16 17:08:28 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 | */ |
@@ -113,6 +113,7 @@ typedef struct global_State { | |||
113 | lu_mem GCthreshold; | 113 | lu_mem GCthreshold; |
114 | lu_mem nblocks; /* number of `bytes' currently allocated */ | 114 | lu_mem nblocks; /* number of `bytes' currently allocated */ |
115 | lua_CFunction panic; /* to be called in unprotected errors */ | 115 | lua_CFunction panic; /* to be called in unprotected errors */ |
116 | Node dummynode[1]; /* common node array for all empty tables */ | ||
116 | TString *tmname[TM_N]; /* array with tag-method names */ | 117 | TString *tmname[TM_N]; /* array with tag-method names */ |
117 | } global_State; | 118 | } global_State; |
118 | 119 | ||