diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-10-06 11:29:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-10-06 11:29:49 -0300 |
commit | 9294466234f4304fd1d31e343fb5ca48aec03b16 (patch) | |
tree | 1660010b53b3fa617c9af0274f44dcff34ed5fef /llimits.h | |
parent | e290bd6760c2fe2586be65bba118c52a6398b492 (diff) | |
download | lua-9294466234f4304fd1d31e343fb5ca48aec03b16.tar.gz lua-9294466234f4304fd1d31e343fb5ca48aec03b16.tar.bz2 lua-9294466234f4304fd1d31e343fb5ca48aec03b16.zip |
detail (string cache a bit smaller by default)
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.137 2015/09/08 16:53:56 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.138 2015/09/22 14:18:24 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 | */ |
@@ -195,7 +195,7 @@ typedef unsigned long Instruction; | |||
195 | ** makes a direct cache.) | 195 | ** makes a direct cache.) |
196 | */ | 196 | */ |
197 | #if !defined(STRCACHE_N) | 197 | #if !defined(STRCACHE_N) |
198 | #define STRCACHE_N 63 | 198 | #define STRCACHE_N 53 |
199 | #define STRCACHE_M 2 | 199 | #define STRCACHE_M 2 |
200 | #endif | 200 | #endif |
201 | 201 | ||