aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 3bb3fa5d..6c2cfee9 100644
--- a/lstate.h
+++ b/lstate.h
@@ -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