From: Jim Meyering Date: Sun, 31 Mar 1996 17:19:06 +0000 (+0000) Subject: . X-Git-Tag: TEXTUTILS-1_14b~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d1c60aba7767df36d2ee51b1687a0179f4b71e8;p=thirdparty%2Fcoreutils.git . --- diff --git a/old/sh-utils/ChangeLog b/old/sh-utils/ChangeLog index 8c0cf70066..9653759625 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 823d5d7978..22daa8eb5a 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)