From 6ee0afb579fc09cd36058b993f45eb2577a80e76 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 3 Jul 2017 12:38:50 +0000 Subject: 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. --- tmux.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 495106e6..1b515f58 100644 --- a/tmux.h +++ b/tmux.h @@ -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; -- cgit