Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/vtterm.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9497 by zmatsuo, Sat Oct 23 16:09:33 2021 UTC revision 9499 by zmatsuo, Sat Oct 23 16:09:57 2021 UTC
# Line 6334  static void ParseFirst(BYTE b) Line 6334  static void ParseFirst(BYTE b)
6334                  break;                  break;
6335    
6336            case IdRussian:            case IdRussian:
6337                  if (ParseFirstRus(b)) {                  switch (ts.KanjiCode) {
6338                          return;                  case IdUTF8:
6339                            if (ParseFirstUTF8(b, 0)) {
6340                                    return;
6341                            }
6342                            break;
6343                    default:
6344                            if (ParseFirstRus(b)) {
6345                                    return;
6346                            }
6347                  }                  }
6348                  break;                  break;
6349    
6350          case IdChinese:          case IdChinese:
6351                  if (ParseFirstCn(b)) {                  switch (ts.KanjiCode) {
6352                          return;                  case IdUTF8:
6353                            if (ParseFirstUTF8(b, 0)) {
6354                                    return;
6355                            }
6356                            break;
6357                    default:
6358                            if (ParseFirstCn(b)) {
6359                                    return;
6360                            }
6361                  }                  }
6362                  break;                  break;
6363          }          }

Legend:
Removed from v.9497  
changed lines
  Added in v.9499

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26