From 7f0a3e240d595120caf773c2ec0ab531381ad705 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sun, 19 Jan 2014 21:46:37 +0200 Subject: Fix to pass the test suite. --- ChangeLog | 5 +++++ builtin.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 189af833..4fa9b3b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Jan 19 21:44:43 2014 Arnold D. Robbins + + * 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 Minimal update to the branch. diff --git a/builtin.c b/builtin.c index 618a2895..6daa99b8 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); -- cgit v1.2.1