summaryrefslogtreecommitdiffstats
path: root/tty.c
diff options
context:
space:
mode:
authornicm <nicm>2020-05-22 15:08:38 +0000
committernicm <nicm>2020-05-22 15:08:38 +0000
commita06a0e13921955aaf7e772ee83a7280720a2f03a (patch)
treec3f5344f6829edd1a0e80d95fd10598dda4601a1 /tty.c
parent9a0763c3a06e589bd5d27046655603faea8c667f (diff)
xterm* can have focus too.
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 770c8b78..d330cbc0 100644
--- a/tty.c
+++ b/tty.c
@@ -467,7 +467,7 @@ tty_update_features(struct tty *tty)
if (options_get_number(global_options, "extended-keys"))
tty_puts(tty, tty_term_string(tty->term, TTYC_ENEKS));
if (options_get_number(global_options, "focus-events"))
- tty_raw(tty, tty_term_string(tty->term, TTYC_ENFCS));
+ tty_puts(tty, tty_term_string(tty->term, TTYC_ENFCS));
if (tty->term->flags & TERM_VT100LIKE)
tty_puts(tty, "\033[?7727h");
}