[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, master, updated. gawk-4.1.0-5334-g9f732755
From: |
Arnold Robbins |
Subject: |
[SCM] gawk branch, master, updated. gawk-4.1.0-5334-g9f732755 |
Date: |
Tue, 5 Sep 2023 15:08:18 -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, master has been updated
via 9f73275518f0bb239830b3bdc7233ac10450af26 (commit)
from 2b09956d8f7e7bb7787e89bfd1de4104d2de7ac8 (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=9f73275518f0bb239830b3bdc7233ac10450af26
commit 9f73275518f0bb239830b3bdc7233ac10450af26
Author: Arnold D. Robbins <arnold@skeeve.com>
Date: Tue Sep 5 12:07:46 2023 -0700
Small improvement to test/mtchi18n2.awk.
diff --git a/test/ChangeLog b/test/ChangeLog
index 0d306996..6fcd5f66 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2023-09-05 Arnold D. Robbins <arnold@skeeve.com>
+
+ * mtchi18n2.awk: Change to use \u in the regexp instead of
+ octal escapes.
+
2023-09-01 Arnold D. Robbins <arnold@skeeve.com>
* Makefile.am (EXTRA_DIST): New test, mtchi18n2.
diff --git a/test/mtchi18n2.awk b/test/mtchi18n2.awk
index 70433862..d8cde1eb 100755
--- a/test/mtchi18n2.awk
+++ b/test/mtchi18n2.awk
@@ -2,8 +2,8 @@ BEGIN {
match("\342\200\257", /^/, m)
print RSTART, RLENGTH
- #match("\342\200\257", /^(a?)\u202F(b?)$/, m)
- match("\342\200\257", /^(a?)\342\200\257(b?)$/, m)
+ match("\342\200\257", /^(a?)\u202F(b?)$/, m)
+ #match("\342\200\257", /^(a?)\342\200\257(b?)$/, m)
print RSTART, RLENGTH, m[1,"start"], m[1,"length"], m[2, "start"], m[2,
"length"]
match("\342\200\257", /$/, m)
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 5 +++++
test/mtchi18n2.awk | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, master, updated. gawk-4.1.0-5334-g9f732755,
Arnold Robbins <=