From 087df82a61ddcf1f86e9cffe5550a1ce0174f6e2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 24 Nov 2004 16:55:42 -0200 Subject: detail --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltable.c b/ltable.c index 75a1a1f2..968b8395 100644 --- 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 -- cgit v1.2.3-55-g6feb