summaryrefslogtreecommitdiff
path: root/chinese/bitchx
diff options
context:
space:
mode:
authorClive Lin <clive@FreeBSD.org>2001-03-18 21:57:09 +0000
committerClive Lin <clive@FreeBSD.org>2001-03-18 21:57:09 +0000
commitb6f397823ff4f34e8b7dc888601ae902e05612da (patch)
tree2fb89b05d07533932697707f9eb169b997e703a2 /chinese/bitchx
parentChange the default cursor color for zh-xemacs-* (diff)
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
Notes
Notes: svn path=/head/; revision=40027
Diffstat (limited to 'chinese/bitchx')
-rw-r--r--chinese/bitchx/files/patch-include::config.h4
1 files 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
+