diff options
author | nicm <nicm> | 2017-07-03 12:38:50 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-07-03 12:38:50 +0000 |
commit | 6ee0afb579fc09cd36058b993f45eb2577a80e76 (patch) | |
tree | fec429120a6a5fa16170ae6283adbd3aa421a9b0 /tmux.h | |
parent | 28687f2d55fb30654a7164bf1445f47b052ea115 (diff) | |
download | rtmux-6ee0afb579fc09cd36058b993f45eb2577a80e76.tar.gz rtmux-6ee0afb579fc09cd36058b993f45eb2577a80e76.tar.bz2 rtmux-6ee0afb579fc09cd36058b993f45eb2577a80e76.zip |
Change previous to not wait for both process exit and pty close -
instead if there is a pipe-pane active, do not exit until all data is
read (including any libevent hasn't seen yet). Fixes problem reported by
Theo Buehler and still seems to solve the original issue.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -768,8 +768,7 @@ struct window_pane { #define PANE_FOCUSPUSH 0x20 #define PANE_INPUTOFF 0x40 #define PANE_CHANGED 0x80 -#define PANE_ERROR 0x100 -#define PANE_EXITED 0x200 +#define PANE_EXITED 0x100 int argc; char **argv; |