1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

maint: sort: remove the last uses of "'%s'" in diagnostics

* src/sort.c (key_warnings): Use quote (quote_n, since there are two)
rather than literal single quotes ('%s') in diagnostic.
This commit is contained in:
Jim Meyering
2012-01-30 12:48:20 +01:00
parent d1b0155d80
commit 447b5d9320

View File

@@ -2373,8 +2373,8 @@ key_warnings (struct keyfield const *gkey, bool gkey_only)
umaxtostr (eword + 1
+ (key->echar == SIZE_MAX), tmp));
}
error (0, 0, _("obsolescent key '%s' used; consider '%s' instead"),
obuf, nbuf);
error (0, 0, _("obsolescent key %s used; consider %s instead"),
quote_n (0, obuf), quote_n (1, nbuf));
}
/* Warn about field specs that will never match. */