summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/ltable.c b/ltable.c
index 71d49dcb..4ac0caab 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.3 1997/10/18 16:29:15 roberto Exp roberto $ 2** $Id: ltable.c,v 1.4 1997/10/23 16:26:37 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*/
@@ -41,9 +41,6 @@ static long int hashindex (TObject *ref)
41 case LUA_T_FUNCTION: 41 case LUA_T_FUNCTION:
42 h = (IntPoint)clvalue(ref); 42 h = (IntPoint)clvalue(ref);
43 break; 43 break;
44 case LUA_T_CFUNCTION:
45 h = (IntPoint)fvalue(ref);
46 break;
47 case LUA_T_ARRAY: 44 case LUA_T_ARRAY:
48 h = (IntPoint)avalue(ref); 45 h = (IntPoint)avalue(ref);
49 break; 46 break;