From: Richard M. Stallman Date: Fri, 9 Aug 1996 10:44:37 +0000 (+0000) Subject: (re_max_failures): Increase to 20000 again. X-Git-Tag: emacs-19.34~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6411ab239c66823f0fa70f8901009319624b9523;p=emacs.git (re_max_failures): Increase to 20000 again. --- diff --git a/src/regex.c b/src/regex.c index 5fe307f0983..2d491c627ec 100644 --- a/src/regex.c +++ b/src/regex.c @@ -1010,7 +1010,7 @@ static const char *re_error_msgid[] = #if defined (MATCH_MAY_ALLOCATE) /* 4400 was enough to cause a crash on Alpha OSF/1, whose default stack limit is 2mb. */ -int re_max_failures = 4000; +int re_max_failures = 20000; #else int re_max_failures = 2000; #endif