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 3a80d9d0..712b9814 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.89 2014/05/26 17:10:22 roberto Exp roberto $ 2** $Id: ltable.c,v 2.90 2014/06/18 22:59:29 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*/
@@ -64,7 +64,7 @@
64#define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) 64#define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1))))
65 65
66 66
67#define hashpointer(t,p) hashmod(t, IntPoint(p)) 67#define hashpointer(t,p) hashmod(t, point2int(p))
68 68
69 69
70#define dummynode (&dummynode_) 70#define dummynode (&dummynode_)