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 5628 by doda, Tue Jul 1 03:19:07 2014 UTC revision 5629 by doda, Thu Jul 3 13:29:28 2014 UTC
# Line 2726  void CSSetLRScrollRegion()     // DECSLRM Line 2726  void CSSetLRScrollRegion()     // DECSLRM
2726              BracketedPaste = TRUE;              BracketedPaste = TRUE;
2727              break;              break;
2728            case 7727: // mintty Application Escape Mode            case 7727: // mintty Application Escape Mode
2729              AppliEscapeMode = TRUE;              AppliEscapeMode = 1;
2730              break;              break;
2731            case 7786: // Wheel to Cursor translation            case 7786: // Wheel to Cursor translation
2732              if (ts.TranslateWheelToCursor) {              if (ts.TranslateWheelToCursor) {
# Line 2740  void CSSetLRScrollRegion()     // DECSLRM Line 2740  void CSSetLRScrollRegion()     // DECSLRM
2740              if (ts.MouseEventTracking)              if (ts.MouseEventTracking)
2741                MouseReportMode = IdMouseTrackNetTerm;                MouseReportMode = IdMouseTrackNetTerm;
2742              break;              break;
2743              case 14002: // test Application Escape Mode 2
2744              case 14003: // test Application Escape Mode 3
2745              case 14004: // test Application Escape Mode 4
2746                AppliEscapeMode = Param[i] - 14000;
2747                break;
2748          }          }
2749      }      }
2750    
# Line 2872  void CSSetLRScrollRegion()     // DECSLRM Line 2877  void CSSetLRScrollRegion()     // DECSLRM
2877              BracketedPaste = FALSE;              BracketedPaste = FALSE;
2878              break;              break;
2879            case 7727: // mintty Application Escape Mode            case 7727: // mintty Application Escape Mode
2880              AppliEscapeMode = FALSE;              AppliEscapeMode = 0;
2881              break;              break;
2882            case 7786: // Wheel to Cursor translation            case 7786: // Wheel to Cursor translation
2883              AcceptWheelToCursor = FALSE;              AcceptWheelToCursor = FALSE;
# Line 2883  void CSSetLRScrollRegion()     // DECSLRM Line 2888  void CSSetLRScrollRegion()     // DECSLRM
2888            case 14001: // NetTerm mouse mode            case 14001: // NetTerm mouse mode
2889              MouseReportMode = IdMouseTrackNone;              MouseReportMode = IdMouseTrackNone;
2890              break;              break;
2891              case 14002: // test Application Escape Mode 2
2892              case 14003: // test Application Escape Mode 3
2893              case 14004: // test Application Escape Mode 4
2894                AppliEscapeMode = 0;
2895                break;
2896          }          }
2897      }      }
2898    
# Line 3246  void CSSetLRScrollRegion()     // DECSLRM Line 3256  void CSSetLRScrollRegion()     // DECSLRM
3256                resp = 2;                resp = 2;
3257              break;              break;
3258            case 7727:    // MinTTY Application Escape Mode            case 7727:    // MinTTY Application Escape Mode
3259              if (AppliEscapeMode)              if (AppliEscapeMode == 1)
3260                resp = 1;                resp = 1;
3261              else              else
3262                resp = 2;                resp = 2;
# Line 3272  void CSSetLRScrollRegion()     // DECSLRM Line 3282  void CSSetLRScrollRegion()     // DECSLRM
3282                resp = 1;                resp = 1;
3283              else              else
3284                resp = 2;                resp = 2;
3285                break;
3286              case 14002:   // test Application Escape Mode 2
3287              case 14003:   // test Application Escape Mode 3
3288              case 14004:   // test Application Escape Mode 4
3289                if (AppliEscapeMode == Param[1] - 14000)
3290                  resp = 1;
3291                else
3292                  resp = 2;
3293              break;              break;
3294          }          }
3295          break;          break;

Legend:
Removed from v.5628  
changed lines
  Added in v.5629

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