aboutsummaryrefslogtreecommitdiff
path: root/lstring.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-10 11:38:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-03-10 11:38:10 -0300
commit3d0577f4b98908be3f2d697ab75c5fbbd3f6999b (patch)
tree61930565ff1b3db7b20e491071a319e5ad1ea0b9 /lstring.h
parent977b8f65f05b311e80bb3344e8529f26e3721bbd (diff)
downloadlua-3d0577f4b98908be3f2d697ab75c5fbbd3f6999b.tar.gz
lua-3d0577f4b98908be3f2d697ab75c5fbbd3f6999b.tar.bz2
lua-3d0577f4b98908be3f2d697ab75c5fbbd3f6999b.zip
small optimizations.
Diffstat (limited to 'lstring.h')
-rw-r--r--lstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstring.h b/lstring.h
index 1bc3bac0..226c02eb 100644
--- a/lstring.h
+++ b/lstring.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.h,v 1.15 1999/12/14 18:42:57 roberto Exp roberto $ 2** $Id: lstring.h,v 1.16 2000/03/03 14:58:26 roberto Exp roberto $
3** String table (keep all strings handled by Lua) 3** String table (keep all strings handled by Lua)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -12,7 +12,7 @@
12#include "lstate.h" 12#include "lstate.h"
13 13
14 14
15#define NUM_HASHSTR 31 15#define NUM_HASHSTR 32
16#define NUM_HASHUDATA 31 16#define NUM_HASHUDATA 31
17#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA) 17#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA)
18 18