diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-18 06:25:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-18 06:25:09 +0000 |
commit | 2504feb8c3fd0bfa94d713fa67ffd63403dbfd5e (patch) | |
tree | 2348b1a98d7df273fbf65be09aeb4e7df4ffd8bf | |
parent | d96810b0ccedba61f7e5d3abefcc7a8a2b30a8d2 (diff) | |
download | coreutils-2504feb8c3fd0bfa94d713fa67ffd63403dbfd5e.tar.xz |
(unquote): Remove unnecessary `' quotes from a diagnostic.
-rw-r--r-- | src/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -516,7 +516,7 @@ unquote (char const *s, struct E_string *es) is undefined, which means we're allowed to issue a warning. */ error (0, 0, _("warning: the ambiguous octal escape \ -\\%c%c%c is being\n\tinterpreted as the 2-byte sequence \\0%c%c, `%c'"), +\\%c%c%c is being\n\tinterpreted as the 2-byte sequence \\0%c%c, %c"), s[i], s[i + 1], s[i + 2], s[i], s[i + 1], s[i + 2]); } |