From a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 4 Apr 1998 00:00:06 +0000 Subject: [PATCH] (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. --- src/regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE) { - fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE); + fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE; #ifdef emacs if (! fail_stack.stack) -- 2.39.2