1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 02:30:35 +02:00
This commit is contained in:
Jim Meyering
1996-03-31 17:19:06 +00:00
parent 399abab9bc
commit 3d1c60aba7
2 changed files with 7 additions and 2 deletions
+6
View File
@@ -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
+1 -2
View File
@@ -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)