From b6f397823ff4f34e8b7dc888601ae902e05612da Mon Sep 17 00:00:00 2001 From: Clive Lin Date: Sun, 18 Mar 2001 21:57:09 +0000 Subject: [PATCH] Update Big5 encoding range. From [\xA1-\xFE][\x40-\x7E\xA1-\xFE] (defined in 1984) to [\x81-\xFE][\x40-\x7E\x80-\xFE] (Modern Big5+) Obtained from: TWBUG --- chinese/bitchx/files/patch-include::config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chinese/bitchx/files/patch-include::config.h b/chinese/bitchx/files/patch-include::config.h index dc6276edec65..ccd29ebd4759 100644 --- a/chinese/bitchx/files/patch-include::config.h +++ b/chinese/bitchx/files/patch-include::config.h @@ -25,8 +25,8 @@ +#ifdef WANT_BIG5 +/* XXX I didn't check the encoding range of big5+. This is standard big5. */ +#define is_big5_los(lo) (((char)0x40<=lo)&&(lo<=(char)0x7E)) /* standard */ -+#define is_big5_lox(lo) (((char)0xA1<=lo)&&(lo<=(char)0xFE)) /* extended */ -+#define is_big5_hi(hi) (((char)0xA1<=hi)&&(hi<=(char)0xFE)) ++#define is_big5_lox(lo) (((char)0x80<=lo)&&(lo<=(char)0xFE)) /* extended */ ++#define is_big5_hi(hi) (((char)0x81<=hi)&&(hi<=(char)0xFE)) +#define is_big5(hi,lo) is_big5_hi(hi) && (is_big5_los(lo) || is_big5_lox(lo)) +#endif WANT_BIG5 +