summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-27 17:10:21 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-27 17:10:21 -0300
commitb53dc0c4853c56694dda727793e5f6188de39dd8 (patch)
treed574df00c35228687d2accd314c1065cf0f42bff /ltable.c
parent63e230a16bd030d11d041dfbec7a8a9bf0152b1e (diff)
downloadlua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.gz
lua-b53dc0c4853c56694dda727793e5f6188de39dd8.tar.bz2
lua-b53dc0c4853c56694dda727793e5f6188de39dd8.zip
TAG_ARRAY -> TAG_TABLE
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltable.c b/ltable.c
index d13002c9..afd17b26 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.35 2000/03/03 14:58:26 roberto Exp roberto $ 2** $Id: ltable.c,v 1.36 2000/03/10 18:37:44 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*/
@@ -32,7 +32,7 @@
32 32
33 33
34 34
35#define TagDefault TAG_ARRAY 35#define TagDefault TAG_TABLE
36 36
37 37
38 38
@@ -49,7 +49,7 @@ Node *luaH_mainposition (const Hash *t, const TObject *key) {
49 case TAG_STRING: case TAG_USERDATA: 49 case TAG_STRING: case TAG_USERDATA:
50 h = tsvalue(key)->hash; 50 h = tsvalue(key)->hash;
51 break; 51 break;
52 case TAG_ARRAY: 52 case TAG_TABLE:
53 h = IntPoint(L, avalue(key)); 53 h = IntPoint(L, avalue(key));
54 break; 54 break;
55 case TAG_LPROTO: 55 case TAG_LPROTO: