diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||