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

version 1.94, 2016/03/03 14:15:22 version 1.95, 2016/04/29 15:00:48
Line 201 
Line 201 
         if (strcmp(oe->name, "monitor-silence") == 0)          if (strcmp(oe->name, "monitor-silence") == 0)
                 alerts_reset_all();                  alerts_reset_all();
   
           /* When the pane-border-status option has been changed, resize panes. */
           if (strcmp(oe->name, "pane-border-status") == 0) {
                   RB_FOREACH(w, windows, &windows)
                           layout_fix_panes(w, w->sx, w->sy);
           }
   
         /* Update sizes and redraw. May not need it but meh. */          /* Update sizes and redraw. May not need it but meh. */
         recalculate_sizes();          recalculate_sizes();
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {

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