[BACK]Return to input.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/input.c between version 1.140 and 1.141

version 1.140, 2018/12/17 21:52:59 version 1.141, 2019/03/12 07:39:27
Line 1572 
Line 1572 
                         screen_write_clearscreen(&ictx->ctx,                          screen_write_clearscreen(&ictx->ctx,
                             ictx->cell.cell.bg);                              ictx->cell.cell.bg);
                         break;                          break;
                   case 6:         /* DECOM */
                           screen_write_mode_clear(&ictx->ctx, MODE_ORIGIN);
                           screen_write_cursormove(&ictx->ctx, 0, 0);
                           break;
                 case 7:         /* DECAWM */                  case 7:         /* DECAWM */
                         screen_write_mode_clear(&ictx->ctx, MODE_WRAP);                          screen_write_mode_clear(&ictx->ctx, MODE_WRAP);
                         break;                          break;
Line 1654 
Line 1658 
                         screen_write_cursormove(&ictx->ctx, 0, 0);                          screen_write_cursormove(&ictx->ctx, 0, 0);
                         screen_write_clearscreen(&ictx->ctx,                          screen_write_clearscreen(&ictx->ctx,
                             ictx->cell.cell.bg);                              ictx->cell.cell.bg);
                           break;
                   case 6:         /* DECOM */
                           screen_write_mode_set(&ictx->ctx, MODE_ORIGIN);
                           screen_write_cursormove(&ictx->ctx, 0, 0);
                         break;                          break;
                 case 7:         /* DECAWM */                  case 7:         /* DECAWM */
                         screen_write_mode_set(&ictx->ctx, MODE_WRAP);                          screen_write_mode_set(&ictx->ctx, MODE_WRAP);

Legend:
Removed from v.1.140  
changed lines
  Added in v.1.141