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 84d3358e..158f7f8a 100644
--- a/lstate.h
+++ b/lstate.h
@@ -81,8 +81,9 @@ typedef struct global_State {
81 Proto *rootproto; /* list of all prototypes */ 81 Proto *rootproto; /* list of all prototypes */
82 Closure *rootcl; /* list of all closures */ 82 Closure *rootcl; /* list of all closures */
83 Table *roottable; /* list of all tables */ 83 Table *roottable; /* list of all tables */
84 Udata *rootudata; /* list of all userdata */
85 UpVal *rootupval; /* list of closed up values */ 84 UpVal *rootupval; /* list of closed up values */
85 Udata *rootudata; /* list of all userdata */
86 Udata *tmudata; /* list of userdata to be GC */
86 TString *tmname[TM_N]; /* array with tag-method names */ 87 TString *tmname[TM_N]; /* array with tag-method names */
87} global_State; 88} global_State;
88 89