From 835a6c0cf088437e318783c96b142c7dc26c290f Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 13 Jan 2020 08:12:53 +0000 Subject: Be more specific in the DSR we are looking for so it doesn't get confused with mouse sequences. Also set a flag and don't bother checking for it if we have already seen it (same for DA), and don't check if we never asked for it. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 75e483c5..adc1a240 100644 --- a/tmux.h +++ b/tmux.h @@ -1227,6 +1227,8 @@ struct tty { #define TTY_OPENED 0x20 #define TTY_FOCUS 0x40 #define TTY_BLOCK 0x80 +#define TTY_HAVEDA 0x100 +#define TTY_HAVEDSR 0x200 int flags; struct tty_term *term; -- cgit