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.cpp | |
parent | - Use USE_LDCONFIG (diff) |
- Fix input error on some Big5 range
- Summitted by Edward G.J. Lee <edt1023@info.sayya.org> Thanks.
PR: ports/100545
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=168250
Diffstat (limited to 'chinese/zhcon/files/patch-src-winime.cpp')
-rw-r--r-- | chinese/zhcon/files/patch-src-winime.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chinese/zhcon/files/patch-src-winime.cpp b/chinese/zhcon/files/patch-src-winime.cpp new file mode 100644 index 000000000000..c017310bfebf --- /dev/null +++ b/chinese/zhcon/files/patch-src-winime.cpp @@ -0,0 +1,11 @@ +--- src/winime.cpp.orig Tue Apr 25 00:38:28 2006 ++++ src/winime.cpp Wed Jul 19 22:29:47 2006 +@@ -184,6 +184,8 @@ + p++; + while (IsGB2312_1(*p) && IsGB2312_2(*(p + 1))) + p += 2; ++ while (IsBIG5_1(*p) && IsBIG5_2(*(p + 1))) ++ p += 2; + return !IsHzCode1(*p); + } + |