=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.789 retrieving revision 1.790 diff -u -r1.789 -r1.790 --- src/usr.bin/tmux/tmux.h 2017/06/30 22:24:08 1.789 +++ src/usr.bin/tmux/tmux.h 2017/07/03 08:16:03 1.790 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.789 2017/06/30 22:24:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.790 2017/07/03 08:16:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -768,6 +768,8 @@ #define PANE_FOCUSPUSH 0x20 #define PANE_INPUTOFF 0x40 #define PANE_CHANGED 0x80 +#define PANE_ERROR 0x100 +#define PANE_EXITED 0x200 int argc; char **argv; @@ -2133,6 +2135,7 @@ void window_destroy_panes(struct window *); struct window_pane *window_pane_find_by_id_str(const char *); struct window_pane *window_pane_find_by_id(u_int); +int window_pane_destroy_ready(struct window_pane *); int window_pane_spawn(struct window_pane *, int, char **, const char *, const char *, const char *, struct environ *, struct termios *, char **); @@ -2154,7 +2157,6 @@ int window_pane_outside(struct window_pane *); int window_pane_visible(struct window_pane *); u_int window_pane_search(struct window_pane *, const char *); - const char *window_printable_flags(struct winlink *); struct window_pane *window_pane_find_up(struct window_pane *); struct window_pane *window_pane_find_down(struct window_pane *);