From f4b339a2f68d3f2b890becb0a0ff153ad27a97ac Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 4 Apr 1998 00:00:06 +0000 Subject: [PATCH] (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. --- regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regex.c b/regex.c index a26c0f57a..5f79663f2 100644 --- a/regex.c +++ b/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.11.0