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

Diff for /src/usr.bin/tmux/window-client.c between version 1.17 and 1.18

version 1.17, 2019/03/12 20:02:47 version 1.18, 2019/03/16 17:14:07
Line 229 
Line 229 
         screen_write_hline(ctx, sx, 0, 0);          screen_write_hline(ctx, sx, 0, 0);
   
         screen_write_cursormove(ctx, cx, cy + sy - 1, 0);          screen_write_cursormove(ctx, cx, cy + sy - 1, 0);
         if (c->status.old_status != NULL)          if (c->status.old_screen != NULL)
                 screen_write_fast_copy(ctx, c->status.old_status, 0, 0, sx, 1);                  screen_write_fast_copy(ctx, c->status.old_screen, 0, 0, sx, 1);
         else          else
                 screen_write_fast_copy(ctx, &c->status.status, 0, 0, sx, 1);                  screen_write_fast_copy(ctx, &c->status.screen, 0, 0, sx, 1);
 }  }
   
 static struct screen *  static struct screen *

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