diff options
| author | Richard M. Stallman | 1996-08-09 10:44:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-08-09 10:44:37 +0000 |
| commit | 6411ab239c66823f0fa70f8901009319624b9523 (patch) | |
| tree | 1fe226866850e8937484490877bbe3395501e863 /src | |
| parent | 86d6f6ee606f05688f1834e9db061ec6088f8040 (diff) | |
| download | emacs-6411ab239c66823f0fa70f8901009319624b9523.tar.gz emacs-6411ab239c66823f0fa70f8901009319624b9523.zip | |
(re_max_failures): Increase to 20000 again.
Diffstat (limited to 'src')
| -rw-r--r-- | src/regex.c | 2 |
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[] = | |||
| 1010 | #if defined (MATCH_MAY_ALLOCATE) | 1010 | #if defined (MATCH_MAY_ALLOCATE) |
| 1011 | /* 4400 was enough to cause a crash on Alpha OSF/1, | 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. */ |
| 1013 | int re_max_failures = 4000; | 1013 | int re_max_failures = 20000; |
| 1014 | #else | 1014 | #else |
| 1015 | int re_max_failures = 2000; | 1015 | int re_max_failures = 2000; |
| 1016 | #endif | 1016 | #endif |