diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-12-01 13:08:14 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-12-01 13:08:14 -0200 |
commit | d0356d5f15aea1f9934bd9e223bcb12a865a8608 (patch) | |
tree | c4fc43efcdb2db876f248904c7b8476ca3086f8c /llimits.h | |
parent | ac78b914b655dd8e89d306f6336a229452046ead (diff) | |
download | lua-d0356d5f15aea1f9934bd9e223bcb12a865a8608.tar.gz lua-d0356d5f15aea1f9934bd9e223bcb12a865a8608.tar.bz2 lua-d0356d5f15aea1f9934bd9e223bcb12a865a8608.zip |
another value for LUAI_MAXCCALLS (must think more about that)
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.144 2017/06/27 11:35:01 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.145 2017/11/23 16:35:54 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 | */ |
@@ -144,7 +144,7 @@ typedef LUAI_UACINT l_uacInt; | |||
144 | ** be compatible with the size of the C stack.) | 144 | ** be compatible with the size of the C stack.) |
145 | */ | 145 | */ |
146 | #if !defined(LUAI_MAXCCALLS) | 146 | #if !defined(LUAI_MAXCCALLS) |
147 | #define LUAI_MAXCCALLS 1000 | 147 | #define LUAI_MAXCCALLS 2200 |
148 | #endif | 148 | #endif |
149 | 149 | ||
150 | 150 | ||