changeset 1633:e4824ae11924

(quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '. Suggestion from Paul Eggert.
author Jim Meyering <jim@meyering.net>
date Mon, 11 Jan 1999 03:11:15 +0000
parents f6217175922c
children f33ec1a9c162
files lib/quotearg.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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;