From cc81bba1e34b4a7a357b6a7e6ec1d4eede4ffa61 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 13 Oct 2005 13:19:29 +0000 Subject: 21870: bad INULL() definition 21869: multibyte characters in %-substitutions, invalid multibyte characters in completion listings --- Src/zsh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 19cfe216d..3db3aa3d4 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -163,7 +163,7 @@ struct mathfunc { */ #define Nularg ((char) 0x9c) -#define INULL(x) (((x) & 0xf8) == 0x98) +#define INULL(x) ((x) >= Snull && (x) <= Nularg) /* * Take care to update the use of IMETA appropriately when adding -- cgit 1.4.1