summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pr.c b/src/pr.c
index 23986ea6f..096758888 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -2326,7 +2326,7 @@ print_char (char c)
print_white_space ();
/* Nonprintables are assumed to have width 0, except '\b'. */
- if (!ISPRINT (to_uchar (c)))
+ if (! isprint (to_uchar (c)))
{
if (c == '\b')
--output_position;
@@ -2685,7 +2685,7 @@ char_to_clump (char c)
}
}
- else if (!ISPRINT (uc))
+ else if (! isprint (uc))
{
if (use_esc_sequence)
{