[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.422 and 1.423

version 1.422, 2022/07/06 07:36:36 version 1.423, 2022/08/02 11:09:26
Line 1626 
Line 1626 
         if (ctx->set_client_cb == NULL)          if (ctx->set_client_cb == NULL)
                 return;                  return;
         TAILQ_FOREACH(c, &clients, entry) {          TAILQ_FOREACH(c, &clients, entry) {
                 if (!tty_client_ready(c))                  if (ctx->allow_invisible_panes) {
                         continue;                      if (c->session == NULL ||
                 state = ctx->set_client_cb(ctx, c);                          c->tty.term == NULL ||
                 if (state == -1)                          c->flags & CLIENT_SUSPENDED)
                         break;                              continue;
                 if (state == 0)                  } else {
                         continue;                          if (!tty_client_ready(c))
                                   continue;
                           state = ctx->set_client_cb(ctx, c);
                           if (state == -1)
                                   break;
                           if (state == 0)
                                   continue;
                   }
                 cmdfn(&c->tty, ctx);                  cmdfn(&c->tty, ctx);
         }          }
 }  }

Legend:
Removed from v.1.422  
changed lines
  Added in v.1.423