aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-06-26 18:00:52 +0000
committerRichard M. Stallman1996-06-26 18:00:52 +0000
commit0f374b2b6c496ae9044e94a722f4c9349436f3c0 (patch)
tree5bfc283261e1a0669272768c377c7bd6bcba3a30 /src
parentf8d07b62ccd500f1192cae4cea1357e8dcbeba18 (diff)
downloademacs-0f374b2b6c496ae9044e94a722f4c9349436f3c0.tar.gz
emacs-0f374b2b6c496ae9044e94a722f4c9349436f3c0.zip
(re_max_failures): Reduce to 4000.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex.c b/src/regex.c
index 48ff0e4a492..c41aa1f2b48 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -1008,9 +1008,9 @@ static const char *re_error_msgid[] =
1008 This is a variable only so users of regex can assign to it; we never 1008 This is a variable only so users of regex can assign to it; we never
1009 change it ourselves. */ 1009 change it ourselves. */
1010#if defined (MATCH_MAY_ALLOCATE) 1010#if defined (MATCH_MAY_ALLOCATE)
1011/* 8600 was enough to cause a crash on Ultrix, 1011/* 4400 was enough to cause a crash on Alpha OSF/1,
1012 whose default stack limit is 2mb. */ 1012 whose default stack limit is 2mb. */
1013int re_max_failures = 8000; 1013int re_max_failures = 4000;
1014#else 1014#else
1015int re_max_failures = 2000; 1015int re_max_failures = 2000;
1016#endif 1016#endif