aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 50307ada..2e88a894 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.45 2000/06/05 20:15:33 roberto Exp roberto $ 2** $Id: ltable.c,v 1.46 2000/06/06 16:31:41 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*/
@@ -54,7 +54,7 @@ Node *luaH_mainposition (const Hash *t, const TObject *key) {
54 h = IntPoint(tsvalue(key)); 54 h = IntPoint(tsvalue(key));
55 break; 55 break;
56 case TAG_TABLE: 56 case TAG_TABLE:
57 h = IntPoint(avalue(key)); 57 h = IntPoint(hvalue(key));
58 break; 58 break;
59 case TAG_LCLOSURE: case TAG_CCLOSURE: 59 case TAG_LCLOSURE: case TAG_CCLOSURE:
60 h = IntPoint(clvalue(key)); 60 h = IntPoint(clvalue(key));