aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-11-24 16:55:42 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-11-24 16:55:42 -0200
commit087df82a61ddcf1f86e9cffe5550a1ce0174f6e2 (patch)
tree20273976209d51a61dc52fe5c73936c7d3658e68
parent10e48b91603a5228a9da2b282c74fa09ac03f4c6 (diff)
downloadlua-087df82a61ddcf1f86e9cffe5550a1ce0174f6e2.tar.gz
lua-087df82a61ddcf1f86e9cffe5550a1ce0174f6e2.tar.bz2
lua-087df82a61ddcf1f86e9cffe5550a1ce0174f6e2.zip
detail
-rw-r--r--ltable.c4
1 files 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 @@
1/* 1/*
2** $Id: ltable.c,v 2.6 2004/09/27 18:54:45 roberto Exp roberto $ 2** $Id: ltable.c,v 2.7 2004/10/06 18:34:16 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -38,7 +38,7 @@
38** max size of array part is 2^MAXBITS 38** max size of array part is 2^MAXBITS
39*/ 39*/
40#if LUA_BITSINT > 26 40#if LUA_BITSINT > 26
41#define MAXBITS 24 41#define MAXBITS 26
42#else 42#else
43#define MAXBITS (LUA_BITSINT-2) 43#define MAXBITS (LUA_BITSINT-2)
44#endif 44#endif