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 /lobject.h | |
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 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.136 2002/06/20 20:41:46 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.137 2002/06/24 13:08:45 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -212,7 +212,7 @@ typedef struct Table { | |||
212 | struct Table *next; | 212 | struct Table *next; |
213 | struct Table *mark; /* marked tables (point to itself when not marked) */ | 213 | struct Table *mark; /* marked tables (point to itself when not marked) */ |
214 | int sizearray; /* size of `array' array */ | 214 | int sizearray; /* size of `array' array */ |
215 | unsigned short flags; /* 1<<p means tagmethod(p) is not present */ | 215 | lu_byte flags; /* 1<<p means tagmethod(p) is not present */ |
216 | lu_byte lsizenode; /* log2 of size of `node' array */ | 216 | lu_byte lsizenode; /* log2 of size of `node' array */ |
217 | } Table; | 217 | } Table; |
218 | 218 | ||