summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-24 17:18:38 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-24 17:18:38 -0300
commitfdfd5b44ee48a5497181d0bcaa89586b12a48eb4 (patch)
tree9931e21b52c08b60ae76f1a787b2b112d4dcb5ce /lobject.h
parent1a4c428d6d2c9c9a35ceb7d4fb054f83c89f98e5 (diff)
downloadlua-github-fdfd5b44ee48a5497181d0bcaa89586b12a48eb4.tar.gz
TM_GETTABLE/TM_SETTABLE don't need fast access anymore
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 62357a9a..259c2977 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
/*
-** $Id: lobject.h,v 1.136 2002/06/20 20:41:46 roberto Exp roberto $
+** $Id: lobject.h,v 1.137 2002/06/24 13:08:45 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -212,7 +212,7 @@ typedef struct Table {
struct Table *next;
struct Table *mark; /* marked tables (point to itself when not marked) */
int sizearray; /* size of `array' array */
- unsigned short flags; /* 1<<p means tagmethod(p) is not present */
+ lu_byte flags; /* 1<<p means tagmethod(p) is not present */
lu_byte lsizenode; /* log2 of size of `node' array */
} Table;