[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.13 and 1.14

version 1.13, 2009/07/17 18:45:08 version 1.14, 2009/07/20 09:15:18
Line 460 
Line 460 
         flag = ' ';          flag = ' ';
         if (wl == SLIST_FIRST(&s->lastw))          if (wl == SLIST_FIRST(&s->lastw))
                 flag = '-';                  flag = '-';
         if (wl == s->curw)          if (wl == s->curw) {
                   fg = options_get_number(&wl->window->options, "window-status-current-fg");
                   if (fg != 8)
                           gc->fg = fg;
                   bg = options_get_number(&wl->window->options, "window-status-current-bg");
                   if (bg != 8)
                           gc->bg = bg;
                   attr = options_get_number(&wl->window->options, "window-status-current-attr");
                   if (attr != 0)
                           gc->attr = attr;
                 flag = '*';                  flag = '*';
           }
   
         if (session_alert_has(s, wl, WINDOW_ACTIVITY)) {          if (session_alert_has(s, wl, WINDOW_ACTIVITY)) {
                 flag = '#';                  flag = '#';

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14