[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.94 and 1.95

version 1.94, 2012/07/10 11:53:01 version 1.95, 2012/11/27 13:52:23
Line 705 
Line 705 
                         gc->attr = attr;                          gc->attr = attr;
                 fmt = options_get_string(oo, "window-status-current-format");                  fmt = options_get_string(oo, "window-status-current-format");
         }          }
           if (wl == TAILQ_FIRST(&s->lastw)) {
                   fg = options_get_number(oo, "window-status-last-fg");
                   if (fg != 8)
                           colour_set_fg(gc, fg);
                   bg = options_get_number(oo, "window-status-last-bg");
                   if (bg != 8)
                           colour_set_bg(gc, bg);
                   attr = options_get_number(oo, "window-status-last-attr");
                   if (attr != 0)
                           gc->attr = attr;
           }
   
         if (wl->flags & WINLINK_BELL) {          if (wl->flags & WINLINK_BELL) {
                 fg = options_get_number(oo, "window-status-bell-fg");                  fg = options_get_number(oo, "window-status-bell-fg");

Legend:
Removed from v.1.94  
changed lines
  Added in v.1.95