The branch, master has been updated
via 9763282dc1f384f4e3cf491c184ea990fd29e1f7 (commit)
via 44dccf7ea27edb938b732f5b9eb1d59ccb9a11fd (commit)
from 80b5c0e0768f938dcb80778e4db057333c74989e (commit)
- Log -----------------------------------------------------------------
commit 9763282dc1f384f4e3cf491c184ea990fd29e1f7
Merge: 80b5c0e 44dccf7
Author: Thomas Adam <[email protected]>
Commit: Thomas Adam <[email protected]>
Merge branch 'obsd-master'
tty.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit 44dccf7ea27edb938b732f5b9eb1d59ccb9a11fd
Author: Nicholas Marriott <[email protected]>
Commit: Nicholas Marriott <[email protected]>
Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder.
---
tty.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/tty.c b/tty.c
index 0270af9..b221031 100644
--- a/tty.c
+++ b/tty.c
@@ -663,7 +663,9 @@ tty_write(
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session == NULL || c->tty.term == NULL)
continue;
- if (c->flags & (CLIENT_SUSPENDED|TTY_FREEZE))
+ if (c->flags & CLIENT_SUSPENDED)
+ continue;
+ if (c->tty.flags & TTY_FREEZE)
continue;
if (c->session->curw->window != wp->window)
continue;
-----------------------------------------------------------------------
Summary of changes:
tty.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
tmux
------------------------------------------------------------------------------
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs