[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.79 and 1.80

version 1.79, 2015/08/28 15:51:48 version 1.80, 2015/08/28 16:10:46
Line 180 
Line 180 
         if (strcmp(oe->name, "automatic-rename") == 0) {          if (strcmp(oe->name, "automatic-rename") == 0) {
                 RB_FOREACH(w, windows, &windows) {                  RB_FOREACH(w, windows, &windows) {
                         if (options_get_number(&w->options, "automatic-rename"))                          if (options_get_number(&w->options, "automatic-rename"))
                                 w->active->flags |= PANE_CHANGED;                                  queue_window_name(w);
                           else if (event_initialized(&w->name_timer))
                                   evtimer_del(&w->name_timer);
                 }                  }
         }          }
         if (strcmp(oe->name, "status") == 0 ||          if (strcmp(oe->name, "status") == 0 ||

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80