Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtterm.c
Parent Directory
| Revision Log
| Patch
| 5639 |
if ((buf[0] & 0xf1) == 0xf0 && |
if ((buf[0] & 0xf1) == 0xf0 && |
| 5640 |
(buf[1] & 0xc0) == 0x80 && |
(buf[1] & 0xc0) == 0x80 && |
| 5641 |
(buf[2] & 0xc0) == 0x80 && |
(buf[2] & 0xc0) == 0x80 && |
| 5642 |
(buf[2] & 0xc0) == 0x80) |
(buf[3] & 0xc0) == 0x80) |
| 5643 |
{ // 4バイトコードの場合 |
{ // 4バイトコードの場合 |
| 5644 |
code = ((buf[0] & 0x07) << 18); |
code = ((buf[0] & 0x07) << 18); |
| 5645 |
code |= ((buf[1] & 0x3f) << 12); |
code |= ((buf[1] & 0x3f) << 12); |
|
|
Legend:
| Removed from v.7499 |
|
| changed lines |
| |
Added in v.7642 |
|
|
|