diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-10 15:37:44 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-10 15:37:44 -0300 |
commit | 73aa465a8ed8dee6c6a27a6f8b2f51227b70789d (patch) | |
tree | 496a63ffffe0312f1d0b9882d97944fa38ed7801 /lstate.h | |
parent | 3d0577f4b98908be3f2d697ab75c5fbbd3f6999b (diff) | |
download | lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.tar.gz lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.tar.bz2 lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.zip |
some name changes
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 */ |