[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.177 and 1.178

version 1.177, 2018/08/19 16:45:03 version 1.178, 2018/08/20 20:41:58
Line 284 
Line 284 
         const char      *sep;          const char      *sep;
         size_t           seplen;          size_t           seplen;
   
         x += c->wlmouse;          x += c->status.window_list_offset;
         RB_FOREACH(wl, winlinks, &s->windows) {          RB_FOREACH(wl, winlinks, &s->windows) {
                 oo = wl->window->options;                  oo = wl->window->options;
   
Line 506 
Line 506 
                 wloffset++;                  wloffset++;
   
         /* Copy the window list. */          /* Copy the window list. */
         c->wlmouse = -wloffset + wlstart;          c->status.window_list_offset = -wloffset + wlstart;
         screen_write_cursormove(&ctx, wloffset, 0);          screen_write_cursormove(&ctx, wloffset, 0);
         screen_write_fast_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1);          screen_write_fast_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1);
         screen_free(&window_list);          screen_free(&window_list);

Legend:
Removed from v.1.177  
changed lines
  Added in v.1.178