about summary refs log tree commit diff
path: root/Src/utils.c
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2015-05-09 16:02:37 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2015-05-09 16:02:37 +0900
commita6db0b41ca2c7a8e3da9b51cbaefcb10930a5c1d (patch)
treef1db4fd643ac2694afdd2bc710c4486aa9a3a142 /Src/utils.c
parentf855801fb9ed82d2596f52f5b64dd66c42255c5f (diff)
downloadzsh-a6db0b41ca2c7a8e3da9b51cbaefcb10930a5c1d.tar.gz
zsh-a6db0b41ca2c7a8e3da9b51cbaefcb10930a5c1d.tar.xz
zsh-a6db0b41ca2c7a8e3da9b51cbaefcb10930a5c1d.zip
35064: rename ISPRINT to ZISPRINT to avoid conflict
Diffstat (limited to 'Src/utils.c')
-rw-r--r--Src/utils.c4
1 files changed, 2 insertions, 2 deletions
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) {