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

Diff for /src/usr.bin/tmux/tmux.c between version 1.188 and 1.189

version 1.188, 2019/04/26 11:38:51 version 1.189, 2019/06/20 11:59:59
Line 321 
Line 321 
         global_s_options = options_create(NULL);          global_s_options = options_create(NULL);
         global_w_options = options_create(NULL);          global_w_options = options_create(NULL);
         for (oe = options_table; oe->name != NULL; oe++) {          for (oe = options_table; oe->name != NULL; oe++) {
                 if (oe->scope == OPTIONS_TABLE_SERVER)                  if (oe->scope & OPTIONS_TABLE_SERVER)
                         options_default(global_options, oe);                          options_default(global_options, oe);
                 if (oe->scope == OPTIONS_TABLE_SESSION)                  if (oe->scope & OPTIONS_TABLE_SESSION)
                         options_default(global_s_options, oe);                          options_default(global_s_options, oe);
                 if (oe->scope == OPTIONS_TABLE_WINDOW)                  if (oe->scope & OPTIONS_TABLE_WINDOW)
                         options_default(global_w_options, oe);                          options_default(global_w_options, oe);
         }          }
   

Legend:
Removed from v.1.188  
changed lines
  Added in v.1.189