From 8b1764e881ade218325491cb20d01378050c8728 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 11 Jan 1999 03:11:15 +0000 Subject: [PATCH] (quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '. Suggestion from Paul Eggert. --- lib/quotearg.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/quotearg.c b/lib/quotearg.c index baf28c6106..e1a6f9356f 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -258,11 +258,6 @@ quotearg_buffer (char *buffer, size_t buffersize, case '\t': c = 't'; goto store_escape; case '\v': c = 'v'; goto store_escape; - case ' ': - if (quoting_style == escape_quoting_style) - goto store_escape; - break; - case '"': if (quoting_style == c_quoting_style) goto store_escape; -- 2.30.2