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

Diff for /src/usr.bin/tmux/Attic/cmd-show-window-options.c between version 1.3 and 1.4

version 1.3, 2009/07/13 23:11:35 version 1.4, 2009/07/15 07:50:34
Line 49 
Line 49 
         struct winlink                  *wl;          struct winlink                  *wl;
         struct options                  *oo;          struct options                  *oo;
         const struct set_option_entry   *entry;          const struct set_option_entry   *entry;
         u_int                            i;  
         char                            *vs;          char                            *vs;
         long long                        vn;          long long                        vn;
   
Line 61 
Line 60 
                 oo = &wl->window->options;                  oo = &wl->window->options;
         }          }
   
         for (i = 0; i < NSETWINDOWOPTION; i++) {          for (entry = set_window_option_table; entry->name != NULL; entry++) {
                 entry = &set_window_option_table[i];  
   
                 if (options_find1(oo, entry->name) == NULL)                  if (options_find1(oo, entry->name) == NULL)
                         continue;                          continue;
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4