diff options
author | Lua Team <team@lua.org> | 2010-11-16 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2010-11-16 12:00:00 +0000 |
commit | ccd28dfe034d5dfd130e5378a147e3e9fe7f6807 (patch) | |
tree | f1c922e8064f556c1034511afbbb3376640c4d27 /src/ltable.c | |
parent | d4bba06f4b8264eee00b25ee08e982d348486aaf (diff) | |
download | lua-github-5.2.0-alpha-rc1.tar.gz |
Lua 5.2.0-alpha-rc15.2.0-alpha-rc1
Diffstat (limited to 'src/ltable.c')
-rw-r--r-- | src/ltable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ltable.c b/src/ltable.c index f93b96cc..7ff0f897 100644 --- a/src/ltable.c +++ b/src/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.52 2010/06/25 12:18:10 roberto Exp $ +** $Id: ltable.c,v 2.53 2010/11/11 15:38:43 roberto Exp $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -38,8 +38,8 @@ /* ** max size of array part is 2^MAXBITS */ -#if LUAI_BITSINT > 26 -#define MAXBITS 26 +#if LUAI_BITSINT >= 32 +#define MAXBITS 30 #else #define MAXBITS (LUAI_BITSINT-2) #endif |