# HG changeset patch # User Jim Meyering # Date 933493479 0 # Node ID 13434b7dd588035f322770548f73e4e9c63488e1 # Parent 87188497883482dca568adba243e2d6e35136d33 (quotearg_buffer): Don't quote spaces if C quoting style. diff --git a/lib/quotearg.c b/lib/quotearg.c --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -263,6 +263,10 @@ goto store_escape; break; + case ' ': + if (quoting_style == c_quoting_style) + goto store_c; + /* Fall through. */ default: if (!ISGRAPH (c)) {