From 0441b743b0e89b12900f9085600846d2e5d0ceaf Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 16 Jun 2005 21:28:41 +0000 Subject: [PATCH] Rather than this: error (..., "...`%s'...", arg); do this: error (..., "...%s...", quote (arg)); --- src/tr.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tr.c b/src/tr.c index 053f91e..b7d0ebe 100644 --- a/src/tr.c +++ b/src/tr.c @@ -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; } -- 2.7.4