[BACK]Return to cmd-set-option.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-set-option.c between version 1.95 and 1.96

version 1.95, 2016/04/29 15:00:48 version 1.96, 2016/05/30 09:50:20
Line 200 
Line 200 
                 status_timer_start_all();                  status_timer_start_all();
         if (strcmp(oe->name, "monitor-silence") == 0)          if (strcmp(oe->name, "monitor-silence") == 0)
                 alerts_reset_all();                  alerts_reset_all();
           if (strcmp(oe->name, "window-style") == 0 ||
               strcmp(oe->name, "window-active-style") == 0) {
                   RB_FOREACH(w, windows, &windows)
                           w->flags |= WINDOW_STYLECHANGED;
           }
   
         /* When the pane-border-status option has been changed, resize panes. */          /* When the pane-border-status option has been changed, resize panes. */
         if (strcmp(oe->name, "pane-border-status") == 0) {          if (strcmp(oe->name, "pane-border-status") == 0) {

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