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

Diff for /src/usr.bin/tmux/status.c between version 1.207 and 1.208

version 1.207, 2020/05/16 15:19:04 version 1.208, 2020/05/16 15:34:08
Line 372 
Line 372 
                 screen_resize(&sl->screen, width, lines, 0);                  screen_resize(&sl->screen, width, lines, 0);
                 changed = force = 1;                  changed = force = 1;
         }          }
         screen_write_start(&ctx, NULL, &sl->screen);          screen_write_start(&ctx, &sl->screen);
   
         /* Write the status lines. */          /* Write the status lines. */
         o = options_get(s->options, "status-format");          o = options_get(s->options, "status-format");
Line 509 
Line 509 
         style_apply(&gc, s->options, "message-style", ft);          style_apply(&gc, s->options, "message-style", ft);
         format_free(ft);          format_free(ft);
   
         screen_write_start(&ctx, NULL, sl->active);          screen_write_start(&ctx, sl->active);
         screen_write_fast_copy(&ctx, &sl->screen, 0, 0, c->tty.sx, lines - 1);          screen_write_fast_copy(&ctx, &sl->screen, 0, 0, c->tty.sx, lines - 1);
         screen_write_cursormove(&ctx, 0, lines - 1, 0);          screen_write_cursormove(&ctx, 0, lines - 1, 0);
         for (offset = 0; offset < c->tty.sx; offset++)          for (offset = 0; offset < c->tty.sx; offset++)
Line 664 
Line 664 
         if (start > c->tty.sx)          if (start > c->tty.sx)
                 start = c->tty.sx;                  start = c->tty.sx;
   
         screen_write_start(&ctx, NULL, sl->active);          screen_write_start(&ctx, sl->active);
         screen_write_fast_copy(&ctx, &sl->screen, 0, 0, c->tty.sx, lines - 1);          screen_write_fast_copy(&ctx, &sl->screen, 0, 0, c->tty.sx, lines - 1);
         screen_write_cursormove(&ctx, 0, lines - 1, 0);          screen_write_cursormove(&ctx, 0, lines - 1, 0);
         for (offset = 0; offset < c->tty.sx; offset++)          for (offset = 0; offset < c->tty.sx; offset++)

Legend:
Removed from v.1.207  
changed lines
  Added in v.1.208