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 6803 by doda, Tue Jun 13 10:42:58 2017 UTC revision 6804 by doda, Tue Jun 13 10:56:30 2017 UTC
# Line 802  void PrnParseControl(BYTE b) // printer Line 802  void PrnParseControl(BYTE b) // printer
802          case NUL:          case NUL:
803                  return;                  return;
804          case SO:          case SO:
805                  if (! DirectPrn) {                  if (ts.EnableSOSI && ! DirectPrn) {
806                          if ((ts.Language==IdJapanese) &&                          if ((ts.Language==IdJapanese) &&
807                              (ts.KanjiCode==IdJIS) &&                              (ts.KanjiCode==IdJIS) &&
808                              (ts.JIS7Katakana==1) &&                              (ts.JIS7Katakana==1) &&
# Line 815  void PrnParseControl(BYTE b) // printer Line 815  void PrnParseControl(BYTE b) // printer
815                  }                  }
816                  break;                  break;
817          case SI:          case SI:
818                  if (! DirectPrn) {                  if (ts.EnableSOSI && ! DirectPrn) {
819                          Glr[0] = 0; /* LS0 */                          Glr[0] = 0; /* LS0 */
820                          return;                          return;
821                  }                  }
# Line 942  void ParseControl(BYTE b) Line 942  void ParseControl(BYTE b)
942                  }                  }
943                  break;                  break;
944          case SO: /* LS1 */          case SO: /* LS1 */
945                  if ((ts.Language==IdJapanese) &&                  if (ts.EnableSOSI) {
946                      (ts.KanjiCode==IdJIS) &&                          if ((ts.Language==IdJapanese) &&
947                      (ts.JIS7Katakana==1) &&                              (ts.KanjiCode==IdJIS) &&
948                      ((ts.TermFlag & TF_FIXEDJIS)!=0))                              (ts.JIS7Katakana==1) &&
949                          Gn[1] = IdKatakana;                              ((ts.TermFlag & TF_FIXEDJIS)!=0))
950                            {
951                                    Gn[1] = IdKatakana;
952                            }
953    
954                  Glr[0] = 1;                          Glr[0] = 1;
955                    }
956                  break;                  break;
957          case SI: /* LS0 */          case SI: /* LS0 */
958                  Glr[0] = 0;                  if (ts.EnableSOSI) {
959                            Glr[0] = 0;
960                    }
961                  break;                  break;
962          case DLE:          case DLE:
963                  if ((ts.FTFlag & FT_BPAUTO)!=0)                  if ((ts.FTFlag & FT_BPAUTO)!=0)

Legend:
Removed from v.6803  
changed lines
  Added in v.6804

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