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

Diff for /src/usr.bin/tmux/cmd-show-options.c between version 1.56 and 1.57

version 1.56, 2019/06/20 11:59:59 version 1.57, 2019/06/20 13:39:17
Line 200 
Line 200 
         u_int                                    idx;          u_int                                    idx;
         int                                      parent;          int                                      parent;
   
           o = options_first(oo);
           while (o != NULL) {
                   if (options_table_entry(o) == NULL)
                           cmd_show_options_print(self, item, o, -1, 0);
                   o = options_next(o);
           }
         for (oe = options_table; oe->name != NULL; oe++) {          for (oe = options_table; oe->name != NULL; oe++) {
                 if (~oe->scope & scope)                  if (~oe->scope & scope)
                         continue;                          continue;

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57