[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.48 and 1.49

version 1.48, 2011/03/29 20:31:22 version 1.49, 2011/03/29 21:07:08
Line 166 
Line 166 
                         server_redraw_client(c);                          server_redraw_client(c);
         }          }
   
         /* Force redraw when some special cases change. */  
         if (strcmp(oe->name, "status-left") == 0 ||  
             strcmp(oe->name, "status-right") == 0 ||  
             strcmp(oe->name, "status") == 0 ||  
             strcmp(oe->name, "set-titles-string") == 0 ||  
             strcmp(oe->name, "window-status-format") == 0) {  
                 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {  
                         c = ARRAY_ITEM(&clients, i);  
                         if (c != NULL && c->session != NULL)  
                                 server_redraw_client(c);  
                 }  
         }  
   
         return (0);          return (0);
 }  }
   

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49