diff options
author | nicm <nicm> | 2020-04-09 12:16:16 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-09 12:16:16 +0000 |
commit | 0e8710f507acda408e3daf1ad71b33997e126505 (patch) | |
tree | fb7bebae147ad68c44d335a2f3ff8612f2f33f87 /tmux.h | |
parent | ff135b34a41b388b9ac98e2f655cf487ace6aa43 (diff) | |
download | rtmux-0e8710f507acda408e3daf1ad71b33997e126505.tar.gz rtmux-0e8710f507acda408e3daf1ad71b33997e126505.tar.bz2 rtmux-0e8710f507acda408e3daf1ad71b33997e126505.zip |
Wait until the initial command sequence is done before sending a device
attributes request and other bits that prompt a reply from the terminal.
This means that stray relies are not left on the terminal if the command
has attached and then immediately detached and tmux will not be around
to receive them. Prompted by a problem report from espie@.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1995,6 +1995,7 @@ int tty_init(struct tty *, struct client *, int, char *); void tty_resize(struct tty *); void tty_set_size(struct tty *, u_int, u_int, u_int, u_int); void tty_start_tty(struct tty *); +void tty_send_requests(struct tty *); void tty_stop_tty(struct tty *); void tty_set_title(struct tty *, const char *); void tty_update_mode(struct tty *, int, struct screen *); |