diff options
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.28 2000/01/19 12:00:45 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.29 2000/02/08 16:34:31 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 | */ |
@@ -43,7 +43,7 @@ struct C_Lua_Stack { | |||
43 | typedef struct stringtable { | 43 | typedef struct stringtable { |
44 | int size; | 44 | int size; |
45 | int nuse; /* number of elements (including EMPTYs) */ | 45 | int nuse; /* number of elements (including EMPTYs) */ |
46 | TaggedString **hash; | 46 | TString **hash; |
47 | } stringtable; | 47 | } stringtable; |
48 | 48 | ||
49 | 49 | ||
@@ -63,7 +63,7 @@ struct lua_State { | |||
63 | struct C_Lua_Stack *Cblocks; | 63 | struct C_Lua_Stack *Cblocks; |
64 | int numCblocks; /* number of nested Cblocks */ | 64 | int numCblocks; /* number of nested Cblocks */ |
65 | /* global state */ | 65 | /* global state */ |
66 | TProtoFunc *rootproto; /* list of all prototypes */ | 66 | Proto *rootproto; /* list of all prototypes */ |
67 | Closure *rootcl; /* list of all closures */ | 67 | Closure *rootcl; /* list of all closures */ |
68 | Hash *roottable; /* list of all tables */ | 68 | Hash *roottable; /* list of all tables */ |
69 | GlobalVar *rootglobal; /* list of global variables */ | 69 | GlobalVar *rootglobal; /* list of global variables */ |