From b53dc0c4853c56694dda727793e5f6188de39dd8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Mar 2000 17:10:21 -0300 Subject: TAG_ARRAY -> TAG_TABLE --- ltable.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index d13002c9..afd17b26 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.35 2000/03/03 14:58:26 roberto Exp roberto $ +** $Id: ltable.c,v 1.36 2000/03/10 18:37:44 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -32,7 +32,7 @@ -#define TagDefault TAG_ARRAY +#define TagDefault TAG_TABLE @@ -49,7 +49,7 @@ Node *luaH_mainposition (const Hash *t, const TObject *key) { case TAG_STRING: case TAG_USERDATA: h = tsvalue(key)->hash; break; - case TAG_ARRAY: + case TAG_TABLE: h = IntPoint(L, avalue(key)); break; case TAG_LPROTO: -- cgit v1.2.3-55-g6feb