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

Diff for /src/usr.bin/tmux/tty.c between version 1.201 and 1.202

version 1.201, 2016/04/30 18:59:02 version 1.202, 2016/05/30 09:26:49
Line 1345 
Line 1345 
                  */                   */
   
                 /* To left edge. */                  /* To left edge. */
                 if (cx == 0)    {                  if (cx == 0) {
                         tty_putc(tty, '\r');                          tty_putc(tty, '\r');
                         goto out;                          goto out;
                 }                  }
Line 1373 
Line 1373 
                         tty_putcode1(tty, TTYC_HPA, cx);                          tty_putcode1(tty, TTYC_HPA, cx);
                         goto out;                          goto out;
                 } else if (change > 0 && tty_term_has(term, TTYC_CUB)) {                  } else if (change > 0 && tty_term_has(term, TTYC_CUB)) {
                           if (change == 2 && tty_term_has(term, TTYC_CUB1)) {
                                   tty_putcode(tty, TTYC_CUB1);
                                   tty_putcode(tty, TTYC_CUB1);
                                   goto out;
                           }
                         tty_putcode1(tty, TTYC_CUB, change);                          tty_putcode1(tty, TTYC_CUB, change);
                         goto out;                          goto out;
                 } else if (change < 0 && tty_term_has(term, TTYC_CUF)) {                  } else if (change < 0 && tty_term_has(term, TTYC_CUF)) {

Legend:
Removed from v.1.201  
changed lines
  Added in v.1.202