diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.18 1999/05/11 14:19:32 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.19 1999/05/11 20:08:20 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 | */ |
@@ -73,10 +73,10 @@ struct lua_State { | |||
73 | lua_CHFunction callhook; | 73 | lua_CHFunction callhook; |
74 | lua_LHFunction linehook; | 74 | lua_LHFunction linehook; |
75 | /* global state */ | 75 | /* global state */ |
76 | GCnode rootproto; /* list of all prototypes */ | 76 | TProtoFunc *rootproto; /* list of all prototypes */ |
77 | GCnode rootcl; /* list of all closures */ | 77 | Closure *rootcl; /* list of all closures */ |
78 | GCnode roottable; /* list of all tables */ | 78 | Hash *roottable; /* list of all tables */ |
79 | GCnode rootglobal; /* list of strings with global values */ | 79 | TaggedString *rootglobal; /* list of strings with global values */ |
80 | stringtable *string_root; /* array of hash tables for strings and udata */ | 80 | stringtable *string_root; /* array of hash tables for strings and udata */ |
81 | struct IM *IMtable; /* table for tag methods */ | 81 | struct IM *IMtable; /* table for tag methods */ |
82 | int last_tag; /* last used tag in IMtable */ | 82 | int last_tag; /* last used tag in IMtable */ |