- Summitted by Edward G.J. Lee <edt1023@info.sayya.org> Thanks. PR: ports/100545 Submitted by: maintainer
11 lines
294 B
C++
11 lines
294 B
C++
--- 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);
|
|
}
|
|
|