[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.256 and 1.257

version 1.256, 2018/08/19 16:45:03 version 1.257, 2018/08/19 20:13:07
Line 1319 
Line 1319 
   
         if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))          if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
                 return;                  return;
           if (c->flags & CLIENT_ALLREDRAWFLAGS) {
                   log_debug("%s: redraw%s%s%s", c->name,
                       (c->flags & CLIENT_REDRAWWINDOW) ? " window" : "",
                       (c->flags & CLIENT_REDRAWSTATUS) ? " status" : "",
                       (c->flags & CLIENT_REDRAWBORDERS) ? " borders" : "");
           }
   
         /*          /*
          * If there is outstanding data, defer the redraw until it has been           * If there is outstanding data, defer the redraw until it has been

Legend:
Removed from v.1.256  
changed lines
  Added in v.1.257