commit 087df82a61ddcf1f86e9cffe5550a1ce0174f6e2
parent 10e48b91603a5228a9da2b282c74fa09ac03f4c6
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 24 Nov 2004 16:55:20 -0200
detail
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ltable.c b/ltable.c
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.c,v 2.6 2004/09/27 18:54:45 roberto Exp roberto $
+** $Id: ltable.c,v 2.7 2004/10/06 18:34:16 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -38,7 +38,7 @@
** max size of array part is 2^MAXBITS
*/
#if LUA_BITSINT > 26
-#define MAXBITS 24
+#define MAXBITS 26
#else
#define MAXBITS (LUA_BITSINT-2)
#endif