From 3787d01a51c110a513e9b6fafa6c5c641399f2ce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 16 Jun 2005 21:33:43 +0000 Subject: Don't embed `this'-style quotes in format strings. Rather than this: error (..., "...`%s'...", arg); do this: error (..., "...%s...", quote (arg)); --- src/join.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/join.c') diff --git a/src/join.c b/src/join.c index 8f4461206..979186c80 100644 --- a/src/join.c +++ b/src/join.c @@ -879,8 +879,8 @@ main (int argc, char **argv) if (STREQ (optarg, "\\0")) newtab = '\0'; else - error (EXIT_FAILURE, 0, _("multi-character tab `%s'"), - optarg); + error (EXIT_FAILURE, 0, _("multi-character tab %s"), + quote (optarg)); } if (0 <= tab && tab != newtab) error (EXIT_FAILURE, 0, _("incompatible tabs")); -- cgit v1.2.3-54-g00ecf