[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.60 and 1.61

version 1.60, 2013/03/22 10:33:50 version 1.61, 2013/03/22 10:36:53
Line 1248 
Line 1248 
                         screen_write_cursormove(&ictx->ctx, 0, 0);                          screen_write_cursormove(&ictx->ctx, 0, 0);
                         screen_write_clearscreen(&ictx->ctx);                          screen_write_clearscreen(&ictx->ctx);
                         break;                          break;
                   case 7:         /* DECAWM */
                           screen_write_mode_clear(&ictx->ctx, MODE_WRAP);
                           break;
                 case 25:        /* TCEM */                  case 25:        /* TCEM */
                         screen_write_mode_clear(&ictx->ctx, MODE_CURSOR);                          screen_write_mode_clear(&ictx->ctx, MODE_CURSOR);
                         break;                          break;
Line 1304 
Line 1307 
                 case 3:         /* DECCOLM */                  case 3:         /* DECCOLM */
                         screen_write_cursormove(&ictx->ctx, 0, 0);                          screen_write_cursormove(&ictx->ctx, 0, 0);
                         screen_write_clearscreen(&ictx->ctx);                          screen_write_clearscreen(&ictx->ctx);
                           break;
                   case 7:         /* DECAWM */
                           screen_write_mode_set(&ictx->ctx, MODE_WRAP);
                         break;                          break;
                 case 25:        /* TCEM */                  case 25:        /* TCEM */
                         screen_write_mode_set(&ictx->ctx, MODE_CURSOR);                          screen_write_mode_set(&ictx->ctx, MODE_CURSOR);

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61