[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.236 and 1.237

version 1.236, 2017/02/08 15:24:48 version 1.237, 2017/02/08 15:49:29
Line 1156 
Line 1156 
 void  void
 tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)  tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
 {  {
         struct window_pane      *wp = ctx->wp;  
   
         if (ctx->xoff + ctx->ocx > tty->sx - 1 && ctx->ocy == ctx->orlower) {          if (ctx->xoff + ctx->ocx > tty->sx - 1 && ctx->ocy == ctx->orlower) {
                 if (tty_pane_full_width(tty, ctx))                  if (tty_pane_full_width(tty, ctx))
                         tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);                          tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
Line 1167 
Line 1165 
   
         tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);          tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
   
         tty_cell(tty, ctx->cell, wp);          tty_cell(tty, ctx->cell, ctx->wp);
 }  }
   
 void  void

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