[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.114 and 1.115

version 1.114, 2014/04/24 09:14:43 version 1.115, 2014/10/02 10:39:43
Line 121 
Line 121 
 {  {
         struct session  *s = c->session;          struct session  *s = c->session;
         struct winlink  *wl;          struct winlink  *wl;
           struct options  *oo;
           size_t           len;
   
         x += c->wlmouse;          x += c->wlmouse;
         RB_FOREACH(wl, winlinks, &s->windows) {          RB_FOREACH(wl, winlinks, &s->windows) {
                   oo = &wl->window->options;
   
                   len = strlen(options_get_string(oo, "window-status-separator"));
                 if (x < wl->status_width && session_select(s, wl->idx) == 0)                  if (x < wl->status_width && session_select(s, wl->idx) == 0)
                         server_redraw_session(s);                          server_redraw_session(s);
                 x -= wl->status_width + 1;                  x -= wl->status_width + len;
         }          }
 }  }
   

Legend:
Removed from v.1.114  
changed lines
  Added in v.1.115