lua

A copy of the Lua development repository
Log | Files | Refs | README

commit f1a1bb23fe29264ec0cf81a8bbfa8f30b0a5b76d
parent 151ba1cc7b9989f677753c64101813ce13bb273e
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 23 Apr 2002 11:59:13 -0300

good stack limit to compute ack(8,3)

Diffstat:
Mllimits.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llimits.h b/llimits.h @@ -1,5 +1,5 @@ /* -** $Id: llimits.h,v 1.41 2002/03/18 18:16:16 roberto Exp roberto $ +** $Id: llimits.h,v 1.42 2002/03/26 20:46:10 roberto Exp roberto $ ** Limits, basic types, and some other `installation-dependent' definitions ** See Copyright Notice in lua.h */ @@ -103,7 +103,7 @@ typedef unsigned long Instruction; /* maximum depth for calls */ #ifndef LUA_MAXCALLS -#define LUA_MAXCALLS 2048 +#define LUA_MAXCALLS 4096 #endif