From a6db0b41ca2c7a8e3da9b51cbaefcb10930a5c1d Mon Sep 17 00:00:00 2001 From: Jun-ichi Takimoto Date: Sat, 9 May 2015 16:02:37 +0900 Subject: 35064: rename ISPRINT to ZISPRINT to avoid conflict --- Src/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Src/utils.c') diff --git a/Src/utils.c b/Src/utils.c index 3d12807e2..13d4b83d4 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -414,7 +414,7 @@ nicechar(int c) static char buf[6]; char *s = buf; c &= 0xff; - if (ISPRINT(c)) + if (ZISPRINT(c)) goto done; if (c & 0x80) { if (isset(PRINTEIGHTBIT)) @@ -423,7 +423,7 @@ nicechar(int c) *s++ = 'M'; *s++ = '-'; c &= 0x7f; - if(ISPRINT(c)) + if(ZISPRINT(c)) goto done; } if (c == 0x7f) { -- cgit 1.4.1