[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.9 and 1.10

version 1.9, 2017/10/25 11:26:11 version 1.10, 2017/11/02 21:29:17
Line 235 
Line 235 
   
         screen_write_cursormove(&ctx, 0, sy - 1);          screen_write_cursormove(&ctx, 0, sy - 1);
         if (c->old_status != NULL)          if (c->old_status != NULL)
                 screen_write_copy(&ctx, c->old_status, 0, 0, sx, 1, NULL, NULL);                  screen_write_fast_copy(&ctx, c->old_status, 0, 0, sx, 1);
         else          else
                 screen_write_copy(&ctx, &c->status, 0, 0, sx, 1, NULL, NULL);                  screen_write_fast_copy(&ctx, &c->status, 0, 0, sx, 1);
   
         screen_write_stop(&ctx);          screen_write_stop(&ctx);
         return (&s);          return (&s);

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10