From: Eli Zaretskii Date: Sat, 30 Sep 2023 17:16:40 +0000 (+0300) Subject: ; * src/regex-emacs.c (forall_firstchar_1): Fix compilation error. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fcd0bb295adef2182136761bdea9dba320dd85ed;p=emacs.git ; * src/regex-emacs.c (forall_firstchar_1): Fix compilation error. --- diff --git a/src/regex-emacs.c b/src/regex-emacs.c index 79e9f2c105a..ffb8891d3a6 100644 --- a/src/regex-emacs.c +++ b/src/regex-emacs.c @@ -2841,6 +2841,7 @@ forall_firstchar_1 (re_char *p, re_char *pend, { re_char *newp1, *newp2, *tmp; re_char *p_orig = p; + int offset; if (p == pend) return false; @@ -2978,7 +2979,7 @@ forall_firstchar_1 (re_char *p, re_char *pend, goto do_twoway_jump; case set_number_at: - int offset = extract_number (p + 1); + offset = extract_number (p + 1); DEBUG_STATEMENT (eassert (extract_number (p + 3))); /* If we're setting the counter of an immediately following `succeed_n`, then this next execution of `succeed_n` will do