diff options
author | 2018-08-02 07:55:16 +0000 | |
---|---|---|
committer | 2018-08-02 07:55:16 +0000 | |
commit | e8c2b18dcec2c2c6ddc672386ce903fb6181b932 (patch) | |
tree | 79fd1bcf6622de32d179d0982493f80d7783ef08 /usr.bin/tmux/tmux.h | |
parent | Actually order the promises in their canonical form, missed that in my (diff) | |
download | wireguard-openbsd-e8c2b18dcec2c2c6ddc672386ce903fb6181b932.tar.xz wireguard-openbsd-e8c2b18dcec2c2c6ddc672386ce903fb6181b932.zip |
Make display-panes block the client until a pane is chosen or it times out.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 42fe0ecdd8b..92ee0021af6 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.831 2018/07/31 11:49:26 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.832 2018/08/02 07:55:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1357,6 +1357,7 @@ struct client { void (*identify_callback)(struct client *, struct window_pane *); void *identify_callback_data; + struct cmdq_item *identify_callback_item; char *message_string; struct event message_timer; |