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.81 2002/03/26 20:46:10 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.82 2002/04/10 12:11:07 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 | */ |
@@ -112,6 +112,7 @@ typedef struct global_State { | |||
112 | size_t Mbuffsize; /* size of Mbuffer */ | 112 | size_t Mbuffsize; /* size of Mbuffer */ |
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 | TString *tmname[TM_N]; /* array with tag-method names */ | 116 | TString *tmname[TM_N]; /* array with tag-method names */ |
116 | } global_State; | 117 | } global_State; |
117 | 118 | ||