|
From: <hep...@us...> - 2016-11-13 23:50:43
|
Revision: 1357
http://sourceforge.net/p/qterm/code/1357
Author: hephooey
Date: 2016-11-13 23:50:40 +0000 (Sun, 13 Nov 2016)
Log Message:
-----------
Make changes suggested in #59, not tested
Modified Paths:
--------------
trunk/qterm/src/uaocodec.cpp
Modified: trunk/qterm/src/uaocodec.cpp
===================================================================
--- trunk/qterm/src/uaocodec.cpp 2016-11-13 22:32:23 UTC (rev 1356)
+++ trunk/qterm/src/uaocodec.cpp 2016-11-13 23:50:40 UTC (rev 1357)
@@ -15732,7 +15732,7 @@
if (ch < 0x80) {
// ASCII
*cursor++ = ch;
- } else if (qt_UnicodeToBig5(ch, c) == 2 && c[0] >= 0xa1 && c[0] <= 0xf9) {
+ } else if (qt_UnicodeToBig5(ch, c) == 2 && c[0] >= 0x81 && c[0] <= 0xfe) {
*cursor++ = c[0];
*cursor++ = c[1];
} else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|