From: Richard M. Stallman Date: Sat, 4 Apr 1998 00:00:06 +0000 (+0000) Subject: (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. X-Git-Tag: emacs-20.3~1722 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5;p=emacs.git (regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error. --- 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)