summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
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 c6f67fd5..59adf0d9 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.31 1999/11/26 18:59:20 roberto Exp roberto $ 2** $Id: ltable.c,v 1.32 1999/12/07 12:05:34 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*/
@@ -52,13 +52,13 @@ Node *luaH_mainposition (const Hash *t, const TObject *key) {
52 case LUA_T_ARRAY: 52 case LUA_T_ARRAY:
53 h = IntPoint(L, avalue(key)); 53 h = IntPoint(L, avalue(key));
54 break; 54 break;
55 case LUA_T_PROTO: 55 case LUA_T_LPROTO:
56 h = IntPoint(L, tfvalue(key)); 56 h = IntPoint(L, tfvalue(key));
57 break; 57 break;
58 case LUA_T_CPROTO: 58 case LUA_T_CPROTO:
59 h = IntPoint(L, fvalue(key)); 59 h = IntPoint(L, fvalue(key));
60 break; 60 break;
61 case LUA_T_CLOSURE: 61 case LUA_T_LCLOSURE: case LUA_T_CCLOSURE:
62 h = IntPoint(L, clvalue(key)); 62 h = IntPoint(L, clvalue(key));
63 break; 63 break;
64 default: 64 default: