[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.237 and 1.238

version 1.237, 2017/02/08 15:49:29 version 1.238, 2017/02/08 16:18:20
Line 954 
Line 954 
   
         tty_default_attributes(tty, wp, ctx->bg);          tty_default_attributes(tty, wp, ctx->bg);
   
         tty_cursor_pane(tty, ctx, 0, ctx->ocy);  
   
         if (ctx->xoff == 0 &&          if (ctx->xoff == 0 &&
             tty_term_has(tty->term, TTYC_EL1) &&              tty_term_has(tty->term, TTYC_EL1) &&
             !tty_fake_bce(tty, ctx->wp, ctx->bg))              !tty_fake_bce(tty, ctx->wp, ctx->bg)) {
                   tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
                 tty_putcode(tty, TTYC_EL1);                  tty_putcode(tty, TTYC_EL1);
         else          } else {
                   tty_cursor_pane(tty, ctx, 0, ctx->ocy);
                 tty_repeat_space(tty, ctx->ocx + 1);                  tty_repeat_space(tty, ctx->ocx + 1);
           }
 }  }
   
 void  void

Legend:
Removed from v.1.237  
changed lines
  Added in v.1.238