[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.73 and 1.74

version 1.73, 2015/04/24 21:38:18 version 1.74, 2015/04/24 23:17:11
Line 91 
Line 91 
         struct options                          *oo;          struct options                          *oo;
         struct window                           *w;          struct window                           *w;
         const char                              *optstr, *valstr;          const char                              *optstr, *valstr;
         u_int                                    i;  
   
         /* Get the option name and value. */          /* Get the option name and value. */
         optstr = args->argv[0];          optstr = args->argv[0];
Line 186 
Line 185 
   
         /* Update sizes and redraw. May not need it but meh. */          /* Update sizes and redraw. May not need it but meh. */
         recalculate_sizes();          recalculate_sizes();
         for (i = 0; i < ARRAY_LENGTH(&clients); i++) {          TAILQ_FOREACH(c, &clients, entry) {
                 c = ARRAY_ITEM(&clients, i);                  if (c->session != NULL)
                 if (c != NULL && c->session != NULL)  
                         server_redraw_client(c);                          server_redraw_client(c);
         }          }
   

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74