diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-24 17:18:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-24 17:18:38 -0300 |
commit | fdfd5b44ee48a5497181d0bcaa89586b12a48eb4 (patch) | |
tree | 9931e21b52c08b60ae76f1a787b2b112d4dcb5ce /ltable.c | |
parent | 1a4c428d6d2c9c9a35ceb7d4fb054f83c89f98e5 (diff) | |
download | lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.gz lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.bz2 lua-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.zip |
TM_GETTABLE/TM_SETTABLE don't need fast access anymore
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 1.109 2002/05/27 20:35:40 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 1.110 2002/06/13 13:39:55 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -302,7 +302,7 @@ Table *luaH_new (lua_State *L, int narray, int lnhash) { | |||
302 | t->next = G(L)->roottable; | 302 | t->next = G(L)->roottable; |
303 | G(L)->roottable = t; | 303 | G(L)->roottable = t; |
304 | t->mark = t; | 304 | t->mark = t; |
305 | t->flags = cast(unsigned short, ~0); | 305 | t->flags = cast(lu_byte, ~0); |
306 | /* temporary values (kept only if some malloc fails) */ | 306 | /* temporary values (kept only if some malloc fails) */ |
307 | t->array = NULL; | 307 | t->array = NULL; |
308 | t->sizearray = 0; | 308 | t->sizearray = 0; |