aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-04 00:00:06 +0000
committerRichard M. Stallman1998-04-04 00:00:06 +0000
commita26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5 (patch)
treece9184b6bea5917b082bfb6b8925fae9617999a8 /src
parent24cef2618f45d8616044237c6dc642b89479442c (diff)
downloademacs-a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5.tar.gz
emacs-a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5.zip
(regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index a26c0f57a65..5f79663f231 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2973,7 +2973,7 @@ regex_compile (pattern, size, syntax, bufp)
2973 2973
2974 if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE) 2974 if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE)
2975 { 2975 {
2976 fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE); 2976 fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE;
2977 2977
2978#ifdef emacs 2978#ifdef emacs
2979 if (! fail_stack.stack) 2979 if (! fail_stack.stack)