about summary refs log tree commit diff
path: root/Src/ztype.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-10-13 16:30:13 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-10-13 16:30:13 +0000
commit3c37057c34d975ada2e9e6590845732677e77104 (patch)
tree35d876225f35ea3d3c90c68df50e41fba8dbbe44 /Src/ztype.h
parentcc81bba1e34b4a7a357b6a7e6ec1d4eede4ffa61 (diff)
downloadzsh-3c37057c34d975ada2e9e6590845732677e77104.tar.gz
zsh-3c37057c34d975ada2e9e6590845732677e77104.tar.xz
zsh-3c37057c34d975ada2e9e6590845732677e77104.zip
21871: replace INULL() by inull()
Diffstat (limited to 'Src/ztype.h')
-rw-r--r--Src/ztype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/ztype.h b/Src/ztype.h
index 595ff0588..2732682a2 100644
--- a/Src/ztype.h
+++ b/Src/ztype.h
@@ -41,6 +41,7 @@
 #define ISPECIAL (1 << 11)
 #define IMETA    (1 << 12)
 #define IWSEP    (1 << 13)
+#define INULL    (1 << 14)
 #define _icom(X,Y) (typtab[STOUC(X)] & Y)
 #define idigit(X) _icom(X,IDIGIT)
 #define ialnum(X) _icom(X,IALNUM)
@@ -56,3 +57,4 @@
 #define ispecial(X) _icom(X,ISPECIAL)
 #define imeta(X) _icom(X,IMETA)
 #define iwsep(X) _icom(X,IWSEP)
+#define inull(X) _icom(X,INULL)