summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2012-05-23 12:37:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2012-05-23 12:37:09 -0300
commit054c20cd5b1d9491e3989cedcf3da5ebed0719cf (patch)
treefc71ddc94ada7af256250acc63fee538b3bccf2f /ltable.c
parent8e7149f496fa175c05c49e7303ff8ba54f3545c9 (diff)
downloadlua-github-054c20cd5b1d9491e3989cedcf3da5ebed0719cf.tar.gz
spaces -> tabs in #defines
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 adccb0a7..60ecbd68 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.c,v 2.69 2012/01/25 21:05:40 roberto Exp roberto $
+** $Id: ltable.c,v 2.70 2012/02/01 21:57:15 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -48,10 +48,10 @@
#define MAXASIZE (1 << MAXBITS)
-#define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t))))
+#define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t))))
#define hashstr(t,str) hashpow2(t, (str)->tsv.hash)
-#define hashboolean(t,p) hashpow2(t, p)
+#define hashboolean(t,p) hashpow2(t, p)
/*