[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.302 and 1.303

version 1.302, 2019/12/16 16:39:03 version 1.303, 2020/01/28 08:06:11
Line 1034 
Line 1034 
         key_code                         key0;          key_code                         key0;
   
         /* Check the client is good to accept input. */          /* Check the client is good to accept input. */
         if (s == NULL || (c->flags & (CLIENT_DEAD|CLIENT_SUSPENDED)) != 0)          if (s == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS))
                 goto out;                  goto out;
         wl = s->curw;          wl = s->curw;
   
Line 1221 
Line 1221 
         struct cmdq_item        *item;          struct cmdq_item        *item;
   
         /* Check the client is good to accept input. */          /* Check the client is good to accept input. */
         if (s == NULL || (c->flags & (CLIENT_DEAD|CLIENT_SUSPENDED)) != 0)          if (s == NULL || (c->flags & CLIENT_UNATTACHEDFLAGS))
                 return (0);                  return (0);
   
         /*          /*

Legend:
Removed from v.1.302  
changed lines
  Added in v.1.303