Mercurial > emacs
changeset 15516:f8e362279cbb
(re_max_failures): Reduce to 4000.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 26 Jun 1996 18:00:52 +0000 |
parents | 69257ac25af4 |
children | d9bb8f6b05a0 |
files | src/regex.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/regex.c Wed Jun 26 17:45:28 1996 +0000 +++ b/src/regex.c Wed Jun 26 18:00:52 1996 +0000 @@ -1008,9 +1008,9 @@ This is a variable only so users of regex can assign to it; we never change it ourselves. */ #if defined (MATCH_MAY_ALLOCATE) -/* 8600 was enough to cause a crash on Ultrix, +/* 4400 was enough to cause a crash on Alpha OSF/1, whose default stack limit is 2mb. */ -int re_max_failures = 8000; +int re_max_failures = 4000; #else int re_max_failures = 2000; #endif