gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5429-g4a3627d7


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5429-g4a3627d7
Date: Mon, 20 Nov 2023 07:39:00 -0500 (EST)

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-5.3-stable has been updated
       via  4a3627d70523681f75025ad5d50b35966d254b02 (commit)
      from  df1f6c441126989efd1b0d45e726c96c2b81abb0 (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=4a3627d70523681f75025ad5d50b35966d254b02

commit 4a3627d70523681f75025ad5d50b35966d254b02
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Nov 20 14:38:40 2023 +0200

    Remove a stupid use of _().

diff --git a/ChangeLog b/ChangeLog
index 324e12c8..3cd53d98 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2023-11-20         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * command.y (yylex): Change _("%s") into "%s". Sheesh.
+
 2023-11-16         Arnold D. Robbins     <arnold@skeeve.com>
 
        * eval.c (cmp_scalars): Check for REGEX as well as STRING
diff --git a/command.c b/command.c
index 8ef03834..b468b68a 100644
--- a/command.c
+++ b/command.c
@@ -2952,7 +2952,7 @@ err:
                        errno = 0;
                        l = strtol(tokstart, &end, 0);
                        if (errno != 0) {
-                               yyerror(_("%s"), strerror(errno));
+                               yyerror("%s", strerror(errno));
                                errno = 0;
                                return '\n';
                        }
diff --git a/command.y b/command.y
index 342c5105..45ad889e 100644
--- a/command.y
+++ b/command.y
@@ -1229,7 +1229,7 @@ err:
                        errno = 0;
                        l = strtol(tokstart, &end, 0);
                        if (errno != 0) {
-                               yyerror(_("%s"), strerror(errno));
+                               yyerror("%s", strerror(errno));
                                errno = 0;
                                return '\n';
                        }

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

Summary of changes:
 ChangeLog | 4 ++++
 command.c | 2 +-
 command.y | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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