diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-05 13:22:54 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-05 13:22:54 -0300 |
commit | 457d88eaaa2ac32e4fa0b7c4310cda9bba95d154 (patch) | |
tree | d6b17e7f6f91f4b218cbf40cde21d32c38067697 /llimits.h | |
parent | 8a1a512c6484b93e8a4ad81f0bffe818a585c1ee (diff) | |
download | lua-457d88eaaa2ac32e4fa0b7c4310cda9bba95d154.tar.gz lua-457d88eaaa2ac32e4fa0b7c4310cda9bba95d154.tar.bz2 lua-457d88eaaa2ac32e4fa0b7c4310cda9bba95d154.zip |
configurable minimum size for the string table
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ | 2 | ** $Id: llimits.h,v 1.37 2002/02/14 21:43:01 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other `installation-dependent' definitions | 3 | ** Limits, basic types, and some other `installation-dependent' definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -108,5 +108,10 @@ typedef unsigned long Instruction; | |||
108 | #endif | 108 | #endif |
109 | 109 | ||
110 | 110 | ||
111 | /* minimum size for the string table */ | ||
112 | #ifndef MINSTRTABSIZE | ||
113 | #define MINSTRTABSIZE 20 | ||
114 | #endif | ||
115 | |||
111 | 116 | ||
112 | #endif | 117 | #endif |