[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.16 and 1.17

version 1.16, 2009/10/12 16:59:55 version 1.17, 2009/10/13 15:23:13
Line 1185 
Line 1185 
                         screen_write_kcursormode(&ictx->ctx, 1);                          screen_write_kcursormode(&ictx->ctx, 1);
                         log_debug("kcursor on");                          log_debug("kcursor on");
                         break;                          break;
                   case 3:         /* DECCOLM */
                           screen_write_cursormove(&ictx->ctx, 0, 0);
                           screen_write_clearscreen(&ictx->ctx);
                           break;
                 case 25:        /* TCEM */                  case 25:        /* TCEM */
                         screen_write_cursormode(&ictx->ctx, 1);                          screen_write_cursormode(&ictx->ctx, 1);
                         log_debug("cursor on");                          log_debug("cursor on");
Line 1256 
Line 1260 
                 case 1:         /* GATM */                  case 1:         /* GATM */
                         screen_write_kcursormode(&ictx->ctx, 0);                          screen_write_kcursormode(&ictx->ctx, 0);
                         log_debug("kcursor off");                          log_debug("kcursor off");
                           break;
                   case 3:         /* DECCOLM */
                           screen_write_cursormove(&ictx->ctx, 0, 0);
                           screen_write_clearscreen(&ictx->ctx);
                         break;                          break;
                 case 25:        /* TCEM */                  case 25:        /* TCEM */
                         screen_write_cursormode(&ictx->ctx, 0);                          screen_write_cursormode(&ictx->ctx, 0);

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17