# HG changeset patch # User Jim Meyering # Date 916024275 0 # Node ID e4824ae11924465ac415f584c9a107d9e394f213 # Parent f6217175922c941c76f917f99175c340b7086606 (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 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -258,11 +258,6 @@ 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;