gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-706


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-706-ge07a65e
Date: Tue, 26 May 2015 03:57:38 +0000

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, gawk-4.1-stable has been updated
       via  e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac (commit)
      from  b8a83849a4871b5ecb186d2bb60e2541a75910ac (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=e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac

commit e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac
Author: Arnold D. Robbins <address@hidden>
Date:   Tue May 26 06:57:23 2015 +0300

    Fix regex compile error messages.

diff --git a/ChangeLog b/ChangeLog
index fcc2b4f..8d623ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-05-26         Arnold D. Robbins     <address@hidden>
+
+       * regcomp.c: Fix offsets so error messages come out correct
+       once again.
+
 2015-05-19         Arnold D. Robbins     <address@hidden>
 
        * 4.1.3: Release tar ball made.
diff --git a/regcomp.c b/regcomp.c
index f3dcb3e..f813a1e 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -159,7 +159,7 @@ const char __re_error_msgid[] attribute_hidden =
 #define REG_EBRACK_IDX (REG_ESUBREG_IDX + sizeof "Invalid back reference")
     gettext_noop ("Unmatched [, [^, [:, [., or [=")    /* REG_EBRACK */
     "\0"
-#define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
+#define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [, [^, [:, [., or 
[=")
     gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
     "\0"
 #define REG_EBRACE_IDX (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")

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

Summary of changes:
 ChangeLog |    5 +++++
 regcomp.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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