summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-09 10:44:37 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-09 10:44:37 +0000
commitca80fe23238681eab5efbb497ddd566026da6b57 (patch)
treef046235fff1fee442a037c06913ba2ae86381fdc
parentdfafdc53c6b4602173d48e22e81cd53862ee7181 (diff)
downloademacs-ca80fe23238681eab5efbb497ddd566026da6b57.tar.gz
(re_max_failures): Increase to 20000 again.
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
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