summaryrefslogtreecommitdiff
path: root/src/ls.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-07-09 17:08:55 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-07-09 17:08:55 +0000
commit197b96d06916887c4c167a3ee25edfdb3631ac71 (patch)
treea80b97e630d7ad60e5479022aef34f3ace3105ab /src/ls.c
parentb3e1ad7a5d972ee947831e9d943a12c239864e72 (diff)
downloadcoreutils-197b96d06916887c4c167a3ee25edfdb3631ac71.tar.xz
Adjust to today's renaming changes in system.h.
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ls.c b/src/ls.c
index be556f6a2..612411e8f 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -3659,7 +3659,7 @@ quote_name (FILE *out, const char *name, struct quoting_options const *options,
while (p < plimit)
{
- if (! ISPRINT (to_uchar (*p)))
+ if (! isprint (to_uchar (*p)))
*p = '?';
p++;
}
@@ -3680,7 +3680,7 @@ quote_name (FILE *out, const char *name, struct quoting_options const *options,
displayed_width = 0;
while (p < plimit)
{
- if (ISPRINT (to_uchar (*p)))
+ if (isprint (to_uchar (*p)))
displayed_width++;
p++;
}