about summary refs log tree commit diff
path: root/Src/ztype.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2006-09-23 20:25:05 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2006-09-23 20:25:05 +0000
commit8f982856626fb000ba722373566ec089208ff67c (patch)
tree4702377bb411ae1ed7cc48c48e2ae9d9ce45d4e9 /Src/ztype.h
parent71fa876defaafe49874b93fdff0c7c4a4e72c878 (diff)
downloadzsh-8f982856626fb000ba722373566ec089208ff67c.tar.gz
zsh-8f982856626fb000ba722373566ec089208ff67c.tar.xz
zsh-8f982856626fb000ba722373566ec089208ff67c.zip
22765: rename some MB_ macros to WC_ for consistency.
Diffstat (limited to 'Src/ztype.h')
-rw-r--r--Src/ztype.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Src/ztype.h b/Src/ztype.h
index 27402fba4..14f66101c 100644
--- a/Src/ztype.h
+++ b/Src/ztype.h
@@ -60,9 +60,9 @@
 #define inull(X) zistype(X,INULL)
 
 #ifdef MULTIBYTE_SUPPORT
-#define MB_ZISTYPE(X,Y) wcsitype((X),(Y))
-#define MB_ISPRINT(X)	iswprint(X)
+#define WC_ZISTYPE(X,Y) wcsitype((X),(Y))
+#define WC_ISPRINT(X)	iswprint(X)
 #else
-#define MB_ZISTYPE(X,Y)	zistype((X),(Y))
-#define MB_ISPRINT(X)	isprint(X)
+#define WC_ZISTYPE(X,Y)	zistype((X),(Y))
+#define WC_ISPRINT(X)	isprint(X)
 #endif