[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.282 and 1.283

version 1.282, 2017/05/13 07:30:50 version 1.283, 2017/05/13 07:41:59
Line 838 
Line 838 
                     tty_term_has(tty->term, TTYC_INDN)) {                      tty_term_has(tty->term, TTYC_INDN)) {
                         tty_region(tty, py, py + ny - 1);                          tty_region(tty, py, py + ny - 1);
                         tty_margin_off(tty);                          tty_margin_off(tty);
                         tty_putcode1(tty, TTYC_INDN, ny);                          tty_putcode1(tty, TTYC_INDN, ny - 1);
                         return;                          return;
                 }                  }
   
Line 853 
Line 853 
                     tty_term_has(tty->term, TTYC_INDN)) {                      tty_term_has(tty->term, TTYC_INDN)) {
                         tty_region(tty, py, py + ny - 1);                          tty_region(tty, py, py + ny - 1);
                         tty_margin(tty, px, px + nx - 1);                          tty_margin(tty, px, px + nx - 1);
                         tty_putcode1(tty, TTYC_INDN, ny);                          tty_putcode1(tty, TTYC_INDN, ny - 1);
                         return;                          return;
                 }                  }
         }          }

Legend:
Removed from v.1.282  
changed lines
  Added in v.1.283