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-5447-g016f02ba


From: Arnold Robbins
Subject: [SCM] gawk branch, feature/minrx, updated. gawk-4.1.0-5447-g016f02ba
Date: Mon, 30 Oct 2023 11:32:54 -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  016f02ba1f3ea59b3ad5e1c91b288d16c7357b61 (commit)
      from  24bad1000e0030ff3887da8325c8f673bacff08a (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=016f02ba1f3ea59b3ad5e1c91b288d16c7357b61

commit 016f02ba1f3ea59b3ad5e1c91b288d16c7357b61
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Oct 30 17:32:19 2023 +0200

    \` and \' now handled in minrx.

diff --git a/re.c b/re.c
index efa1498a..6c773a8a 100644
--- a/re.c
+++ b/re.c
@@ -218,24 +218,6 @@ make_regexp(const char *s, size_t len, bool ignorecase, 
bool dfa, bool canfatal)
                        }
                }
                        break;
-               case '`':
-                       /* gnu regex op */
-                       if (! do_traditional && ! use_gnu_matchers) {
-                               *dest++ = '^';
-                               src++;
-                               break;
-                       }
-                       else
-                               goto do_default;
-               case '\'':
-                       /* gnu regex op */
-                       if (! do_traditional && ! use_gnu_matchers) {
-                               *dest++ = '$';
-                               src++;
-                               break;
-                       }
-                       else
-                               goto do_default;
                case 'y':       /* normally \b */
                        /* gnu regex op */
                        if (! do_traditional) {

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

Summary of changes:
 re.c | 18 ------------------
 1 file changed, 18 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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