[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.31 and 1.32

version 1.31, 2010/12/23 20:18:39 version 1.32, 2010/12/29 21:49:06
Line 953 
Line 953 
                 screen_write_insertmode(sctx, 0);                  screen_write_insertmode(sctx, 0);
                 screen_write_kcursormode(sctx, 0);                  screen_write_kcursormode(sctx, 0);
                 screen_write_kkeypadmode(sctx, 0);                  screen_write_kkeypadmode(sctx, 0);
                 screen_write_mousemode(sctx, 0);                  screen_write_mousemode_off(sctx);
   
                 screen_write_clearscreen(sctx);                  screen_write_clearscreen(sctx);
                 screen_write_cursormove(sctx, 0, 0);                  screen_write_cursormove(sctx, 0, 0);
Line 1156 
Line 1156 
                         screen_write_cursormode(&ictx->ctx, 0);                          screen_write_cursormode(&ictx->ctx, 0);
                         break;                          break;
                 case 1000:                  case 1000:
                         screen_write_mousemode(&ictx->ctx, 0);                  case 1001:
                   case 1002:
                   case 1003:
                           screen_write_mousemode_off(&ictx->ctx);
                         break;                          break;
                 case 1049:                  case 1049:
                         window_pane_alternate_off(wp, &ictx->cell);                          window_pane_alternate_off(wp, &ictx->cell);
Line 1192 
Line 1195 
                         screen_write_cursormode(&ictx->ctx, 1);                          screen_write_cursormode(&ictx->ctx, 1);
                         break;                          break;
                 case 1000:                  case 1000:
                         screen_write_mousemode(&ictx->ctx, 1);                          screen_write_mousemode_on(
                               &ictx->ctx, MODE_MOUSE_STANDARD);
                           break;
                   case 1001:
                           screen_write_mousemode_on(
                               &ictx->ctx, MODE_MOUSE_HIGHLIGHT);
                           break;
                   case 1002:
                           screen_write_mousemode_on(
                               &ictx->ctx, MODE_MOUSE_BUTTON);
                           break;
                   case 1003:
                           screen_write_mousemode_on(&ictx->ctx, MODE_MOUSE_ANY);
                         break;                          break;
                 case 1049:                  case 1049:
                         window_pane_alternate_on(wp, &ictx->cell);                          window_pane_alternate_on(wp, &ictx->cell);

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32