summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--old/sh-utils/ChangeLog6
-rw-r--r--src/ls.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/old/sh-utils/ChangeLog b/old/sh-utils/ChangeLog
index 8c0cf7006..965375962 100644
--- a/old/sh-utils/ChangeLog
+++ b/old/sh-utils/ChangeLog
@@ -1,3 +1,9 @@
+Sun Mar 31 11:18:09 1996 Jim Meyering (meyering@na-net.ornl.gov)
+
+ * ls.c (quote_filename): Use ISGRAPH and ISPRINT in place of
+ ASCII-centric tests against literals.
+ (length_of_file_name_and_frills): Likewise.
+
Fri Mar 29 22:13:10 1996 Jim Meyering (meyering@na-net.ornl.gov)
* src/Makefile.am (INCLUDES): Replace -I$(top_srcdir)/intl with
diff --git a/src/ls.c b/src/ls.c
index 823d5d797..22daa8eb5 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -1683,8 +1683,7 @@ quote_filename (register const char *p, size_t *quoted_length)
}
else
{
- if (!ISPRINT (c)
- && qmark_funny_chars)
+ if (!ISPRINT (c) && qmark_funny_chars)
found_quotable = 1;
}
if (found_quotable)