diff options
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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: |