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 7270 by doda, Wed Nov 21 08:45:21 2018 UTC revision 7271 by doda, Wed Nov 21 08:45:25 2018 UTC
# Line 2418  void CSSunSequence() /* Sun terminal pri Line 2418  void CSSunSequence() /* Sun terminal pri
2418    
2419            case 13: // Report window position            case 13: // Report window position
2420                  if (ts.WindowFlag & WF_WINDOWREPORT) {                  if (ts.WindowFlag & WF_WINDOWREPORT) {
2421                          DispGetWindowPos(&x, &y);                          RequiredParams(2);
2422                            switch (Param[2]) {
2423                              case 0:
2424                              case 1:
2425                                    DispGetWindowPos(&x, &y, FALSE);
2426                                    break;
2427                              case 2:
2428                                    DispGetWindowPos(&x, &y, TRUE);
2429                                    break;
2430                              default:
2431                                    return;
2432                            }
2433                          len = _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "3;%u;%ut", CLocale, (unsigned int)x, (unsigned int)y);                          len = _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "3;%u;%ut", CLocale, (unsigned int)x, (unsigned int)y);
2434                          SendCSIstr(Report, len);                          SendCSIstr(Report, len);
2435                  }                  }

Legend:
Removed from v.7270  
changed lines
  Added in v.7271

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