diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2006-07-19 15:43:33 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2006-07-19 15:43:33 +0000 |
commit | 2e25ec457764a40bfcdfbff471765bdfe12ede66 (patch) | |
tree | 4ca2158754690c54dc4e6d172882e21344532e0b /chinese/zhcon/files/patch-src-winime.h | |
parent | 4da180cc34b42a5de410a40e30490dbbf5901e5c (diff) |
Notes
Diffstat (limited to 'chinese/zhcon/files/patch-src-winime.h')
-rw-r--r-- | chinese/zhcon/files/patch-src-winime.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/chinese/zhcon/files/patch-src-winime.h b/chinese/zhcon/files/patch-src-winime.h new file mode 100644 index 000000000000..1b878902fa0b --- /dev/null +++ b/chinese/zhcon/files/patch-src-winime.h @@ -0,0 +1,15 @@ +--- src/winime.h.orig Tue Apr 25 00:38:26 2006 ++++ src/winime.h Wed Jul 19 22:27:58 2006 +@@ -68,6 +68,12 @@ + bool IsGB2312_2(char c) const { + return c >= 0xA1 && c <= 0xFE; + } ++ bool IsBIG5_1(char c) const { ++ return c >= 0xA1 && c <= 0xFE; ++ } ++ bool IsBIG5_2(char c) const { ++ return c >= 0x40 && c <= 0x7E; ++ } + + void AddCandilist(char*& p,unsigned& buflen); + void SkipNext(char*& rp); |