changeset 21324:f7bf9f8dd35f

(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 3e57725bdd34
children d6d754e9be47
files lib/quotearg.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lib/quotearg.c	Mon Jan 11 03:10:19 1999 +0000
+++ b/lib/quotearg.c	Mon Jan 11 03:11:15 1999 +0000
@@ -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;