From: Jim Meyering Date: Mon, 11 Jan 1999 03:11:15 +0000 (+0000) Subject: (quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b1764e881ade218325491cb20d01378050c8728;p=pspp (quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '. Suggestion from Paul Eggert. --- 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;