diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-07-06 08:32:00 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-07-06 08:32:00 +0000 |
commit | cdacb48181f7efef7cc3e4fe2367570c0da594a6 (patch) | |
tree | bcbf2ae8cb10f728da16aaca6449da3a0d4a98c1 /usr.bin/tmux/tmux.h | |
parent | d65138591ec7a5848e031708f2f99610d5af0191 (diff) |
Defer reading from control client until the command line command has
completed.
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 413fb2b80e5..27861fcd36e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1177 2022/07/06 07:36:36 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1178 2022/07/06 08:31:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -3134,6 +3134,7 @@ char *parse_window_name(const char *); /* control.c */ void control_discard(struct client *); void control_start(struct client *); +void control_ready(struct client *); void control_stop(struct client *); void control_set_pane_on(struct client *, struct window_pane *); void control_set_pane_off(struct client *, struct window_pane *); |