summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-01-11 03:11:15 +0000
committerJim Meyering <jim@meyering.net>1999-01-11 03:11:15 +0000
commit495729b1dc802b2113e6fca85948bb89147aca98 (patch)
treee8b07f5cc7754e138da66df674a027a8cae13d35 /lib
parent75e54792207485a12252a6b74936ba9386fad3ea (diff)
downloadcoreutils-495729b1dc802b2113e6fca85948bb89147aca98.tar.xz
(quotearg_buffer): Change escape_quoting_style so that it no longer escapes ` '.
Suggestion from Paul Eggert.
Diffstat (limited to 'lib')
-rw-r--r--lib/quotearg.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c
index baf28c610..e1a6f9356 100644
--- a/lib/quotearg.c
+++ b/lib/quotearg.c
@@ -258,11 +258,6 @@ quotearg_buffer (char *buffer, size_t buffersize,
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;