diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-04-13 16:30:51 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-04-13 16:30:51 -0300 |
commit | cb7f027380b9eebcf7ce2c00c6e1c5450d53b47a (patch) | |
tree | 066b9633bb085fa8b95c082e3bcf0cf50a90d207 /lstate.h | |
parent | 0bbd96bd5f973f716a93a704e04cf1c78145795f (diff) | |
download | lua-cb7f027380b9eebcf7ce2c00c6e1c5450d53b47a.tar.gz lua-cb7f027380b9eebcf7ce2c00c6e1c5450d53b47a.tar.bz2 lua-cb7f027380b9eebcf7ce2c00c6e1c5450d53b47a.zip |
IMtable must be initialized (and IMtable_size is not needed any more) due
to new way to handle growing vectors (previous modification).
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.14 1999/02/04 17:47:59 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.15 1999/02/25 15:17:01 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 | */ |
@@ -71,7 +71,6 @@ struct lua_State { | |||
71 | GCnode rootglobal; /* list of strings with global values */ | 71 | GCnode rootglobal; /* list of strings with global values */ |
72 | stringtable *string_root; /* array of hash tables for strings and udata */ | 72 | stringtable *string_root; /* array of hash tables for strings and udata */ |
73 | struct IM *IMtable; /* table for tag methods */ | 73 | struct IM *IMtable; /* table for tag methods */ |
74 | int IMtable_size; /* size of IMtable */ | ||
75 | int last_tag; /* last used tag in IMtable */ | 74 | int last_tag; /* last used tag in IMtable */ |
76 | struct ref *refArray; /* locked objects */ | 75 | struct ref *refArray; /* locked objects */ |
77 | int refSize; /* size of refArray */ | 76 | int refSize; /* size of refArray */ |