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

Diff for /src/usr.bin/tmux/tty.c between version 1.141 and 1.142

version 1.141, 2012/09/05 09:59:41 version 1.142, 2012/09/29 06:57:56
Line 663 
Line 663 
                 c = ARRAY_ITEM(&clients, i);                  c = ARRAY_ITEM(&clients, i);
                 if (c == NULL || c->session == NULL || c->tty.term == NULL)                  if (c == NULL || c->session == NULL || c->tty.term == NULL)
                         continue;                          continue;
                 if (c->flags & (CLIENT_SUSPENDED|TTY_FREEZE))                  if (c->flags & CLIENT_SUSPENDED)
                           continue;
                   if (c->tty.flags & TTY_FREEZE)
                         continue;                          continue;
                 if (c->session->curw->window != wp->window)                  if (c->session->curw->window != wp->window)
                         continue;                          continue;

Legend:
Removed from v.1.141  
changed lines
  Added in v.1.142