spaces -> tabs in #defines

This commit is contained in:
Roberto Ierusalimschy
2012-05-23 12:37:09 -03:00
parent 8e7149f496
commit 054c20cd5b
5 changed files with 31 additions and 30 deletions

View File

@@ -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)
/*