[BACK]Return to server-client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/server-client.c between version 1.133 and 1.134

version 1.133, 2015/04/21 15:21:41 version 1.134, 2015/04/22 15:30:11
Line 720 
Line 720 
          * Any windows will have been redrawn as part of clients, so clear           * Any windows will have been redrawn as part of clients, so clear
          * their flags now. Also check pane focus and resize.           * their flags now. Also check pane focus and resize.
          */           */
         for (i = 0; i < ARRAY_LENGTH(&windows); i++) {          RB_FOREACH(w, windows, &windows) {
                 w = ARRAY_ITEM(&windows, i);  
                 if (w == NULL)  
                         continue;  
   
                 w->flags &= ~WINDOW_REDRAW;                  w->flags &= ~WINDOW_REDRAW;
                 TAILQ_FOREACH(wp, &w->panes, entry) {                  TAILQ_FOREACH(wp, &w->panes, entry) {
                         if (wp->fd != -1) {                          if (wp->fd != -1) {

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.134