diff options
| author | Richard M. Stallman <rms@gnu.org> | 1998-04-04 00:00:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1998-04-04 00:00:06 +0000 |
| commit | a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5 (patch) | |
| tree | ce9184b6bea5917b082bfb6b8925fae9617999a8 /src/regex.c | |
| parent | 24cef2618f45d8616044237c6dc642b89479442c (diff) | |
| download | emacs-a26f4ccdd5b03a1f96ebe9b6f1cedcaf325ebad5.tar.gz | |
(regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error.
Diffstat (limited to 'src/regex.c')
| -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 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) |
