[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-stable, updated. 7f0a3e240d595120ca
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-stable, updated. 7f0a3e240d595120caf773c2ec0ab531381ad705 |
Date: |
Sun, 19 Jan 2014 19:46:54 +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-stable has been updated
via 7f0a3e240d595120caf773c2ec0ab531381ad705 (commit)
from 808698b6a4cb7bbbb88e1892fd9c4155119b30f5 (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=7f0a3e240d595120caf773c2ec0ab531381ad705
commit 7f0a3e240d595120caf773c2ec0ab531381ad705
Author: Arnold D. Robbins <address@hidden>
Date: Sun Jan 19 21:46:37 2014 +0200
Fix to pass the test suite.
diff --git a/ChangeLog b/ChangeLog
index 189af83..4fa9b3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jan 19 21:44:43 2014 Arnold D. Robbins <address@hidden>
+
+ * builtin.c (format_tree): Fix to pass the test suite.
+ Probably the last change I'll make to this branch.
+
Mon Dec 3 22:55:23 2012 Arnold D. Robbins <address@hidden>
Minimal update to the branch.
diff --git a/builtin.c b/builtin.c
index 618a289..6daa99b 100644
--- a/builtin.c
+++ b/builtin.c
@@ -787,11 +787,11 @@ check_pos:
const char *msg = NULL;
if (fw && ! have_prec)
- msg = _("field width is ignored for
`%%%%' specifier");
+ msg = _("field width is ignored for
`%%' specifier");
else if (fw == 0 && have_prec)
- msg = _("precision is ignored for
`%%%%' specifier");
+ msg = _("precision is ignored for `%%'
specifier");
else if (fw && have_prec)
- msg = _("field width and precision are
ignored for `%%%%' specifier");
+ msg = _("field width and precision are
ignored for `%%' specifier");
if (msg != NULL)
lintwarn("%s", msg);
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
builtin.c | 6 +++---
2 files changed, 8 insertions(+), 3 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-stable, updated. 7f0a3e240d595120caf773c2ec0ab531381ad705,
Arnold Robbins <=