changeset 1891:13434b7dd588

(quotearg_buffer): Don't quote spaces if C quoting style.
author Jim Meyering <jim@meyering.net>
date Sun, 01 Aug 1999 07:44:39 +0000
parents 871884978834
children e0271f47b42d
files lib/quotearg.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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))
 		{