We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a3ec77 commit 44dccf7Copy full SHA for 44dccf7
1 file changed
tty.c
@@ -663,7 +663,9 @@ tty_write(
663
c = ARRAY_ITEM(&clients, i);
664
if (c == NULL || c->session == NULL || c->tty.term == NULL)
665
continue;
666
- if (c->flags & (CLIENT_SUSPENDED|TTY_FREEZE))
+ if (c->flags & CLIENT_SUSPENDED)
667
+ continue;
668
+ if (c->tty.flags & TTY_FREEZE)
669
670
if (c->session->curw->window != wp->window)
671
0 commit comments