[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.172 and 1.173

version 1.172, 2020/03/31 06:35:38 version 1.173, 2020/03/31 07:00:34
Line 1679 
Line 1679 
                 case 1047:                  case 1047:
                         if (wp != NULL)                          if (wp != NULL)
                                 window_pane_alternate_off(wp, gc, 0);                                  window_pane_alternate_off(wp, gc, 0);
                           else
                                   screen_alternate_off(sctx->s, gc, 0);
                         break;                          break;
                 case 1049:                  case 1049:
                         if (wp != NULL)                          if (wp != NULL)
                                 window_pane_alternate_off(wp, gc, 1);                                  window_pane_alternate_off(wp, gc, 1);
                           else
                                   screen_alternate_off(sctx->s, gc, 1);
                         break;                          break;
                 case 2004:                  case 2004:
                         screen_write_mode_clear(sctx, MODE_BRACKETPASTE);                          screen_write_mode_clear(sctx, MODE_BRACKETPASTE);
Line 1780 
Line 1784 
                 case 1047:                  case 1047:
                         if (wp != NULL)                          if (wp != NULL)
                                 window_pane_alternate_on(wp, gc, 0);                                  window_pane_alternate_on(wp, gc, 0);
                           else
                                   screen_alternate_on(sctx->s, gc, 0);
                         break;                          break;
                 case 1049:                  case 1049:
                         if (wp != NULL)                          if (wp != NULL)
                                 window_pane_alternate_on(wp, gc, 1);                                  window_pane_alternate_on(wp, gc, 1);
                           else
                                   screen_alternate_on(sctx->s, gc, 1);
                         break;                          break;
                 case 2004:                  case 2004:
                         screen_write_mode_set(sctx, MODE_BRACKETPASTE);                          screen_write_mode_set(sctx, MODE_BRACKETPASTE);

Legend:
Removed from v.1.172  
changed lines
  Added in v.1.173