diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-16 21:28:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-16 21:28:41 +0000 |
commit | 0441b743b0e89b12900f9085600846d2e5d0ceaf (patch) | |
tree | adcf7d04a78c94c027f57bba59bad23902fc54c8 | |
parent | e50dc3f9fbb3b86bccefedc6712f0d711d6bf2ad (diff) | |
download | coreutils-0441b743b0e89b12900f9085600846d2e5d0ceaf.tar.xz |
Rather than this: error (..., "...`%s'...", arg);
do this: error (..., "...%s...", quote (arg));
-rw-r--r-- | src/tr.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* tr -- a filter to translate characters - Copyright (C) 91, 1995-2004 Free Software Foundation, Inc. + Copyright (C) 91, 1995-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -834,8 +834,8 @@ find_bracketed_repeat (const struct E_string *es, size_t start_idx, { char *tmp = make_printable_str (digit_str, digit_str_len); error (0, 0, - _("invalid repeat count `%s' in [c*n] construct"), - tmp); + _("invalid repeat count %s in [c*n] construct"), + quote (tmp)); free (tmp); return -2; } @@ -933,8 +933,8 @@ build_spec_list (const struct E_string *es, struct Spec_list *result) { char *tmp = make_printable_str (opnd_str, opnd_str_len); - error (0, 0, _("invalid character class `%s'"), - tmp); + error (0, 0, _("invalid character class %s"), + quote (tmp)); free (tmp); return false; } |