summaryrefslogtreecommitdiff
path: root/src/ls.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-02-03 00:10:40 +0000
committerJim Meyering <jim@meyering.net>1997-02-03 00:10:40 +0000
commit6a203a23475434e0de43fae35bcb5c250fba798c (patch)
tree3337cb25b88bb1d6097cb76b7e420668b0cfaf4e /src/ls.c
parent16e150496f950591d0b6af54f184eb3b03fc7389 (diff)
downloadcoreutils-6a203a23475434e0de43fae35bcb5c250fba798c.tar.xz
(quote_filename): Don't backslash-escape double quotes.
This fixes a problem whereby columns weren't aligned when some files contained double quote characters and ls's --escape (-b) option was used. Reported by Mark Harris.
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ls.c b/src/ls.c
index d3a4f7958..9a16e30be 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -2205,7 +2205,6 @@ quote_filename (register const char *p, size_t *quoted_length)
case '\t':
case '\f':
case ' ':
- case '"':
found_quotable = 1;
break;