gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5412-g67a3e28a


From: Arnold Robbins
Subject: [SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5412-g67a3e28a
Date: Sun, 22 Oct 2023 01:45:25 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, feature/minrx has been updated
       via  67a3e28a3dac767c4b0f8f8098cb6d810881afac (commit)
      from  a7c57931d056ae690d29a7ebcdef785a900daebd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=67a3e28a3dac767c4b0f8f8098cb6d810881afac

commit 67a3e28a3dac767c4b0f8f8098cb6d810881afac
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Sun Oct 22 08:44:48 2023 +0300

    Fixes in re.c.

diff --git a/re.c b/re.c
index df6cfc35..d355e4a1 100644
--- a/re.c
+++ b/re.c
@@ -452,7 +452,7 @@ research(Regexp *rp, char *str, int start,
                res = minrx_regnexec(&(rp->mre_pat),
                                len, str,
                                need_start ? rp->mre_pat.re_nsub + 1 : 1,
-                               need_start ? rp->mre_regs : NULL,
+                               rp->mre_regs,
                                minrx_flags);
                if (res == 0)
                        res = rp->mre_regs[0].rm_so;
@@ -489,7 +489,7 @@ refree(Regexp *rp)
 static const char *
 get_minrx_regerror(int errcode, Regexp *rp)
 {
-       static char *buf, *p;
+       static char *buf;
        static size_t bufsize;
        static int count;
 

-----------------------------------------------------------------------

Summary of changes:
 re.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]