[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.64 and 1.65

version 1.64, 2020/05/16 16:02:24 version 1.65, 2020/12/28 09:40:27
Line 201 
Line 201 
         u_int                                    idx;          u_int                                    idx;
         int                                      parent;          int                                      parent;
   
         o = options_first(oo);          if (cmd_get_entry(self) != &cmd_show_hooks_entry) {
         while (o != NULL) {                  o = options_first(oo);
                 if (options_table_entry(o) == NULL)                  while (o != NULL) {
                         cmd_show_options_print(self, item, o, -1, 0);                          if (options_table_entry(o) == NULL)
                 o = options_next(o);                                  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)

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65