aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--options-table.c2
-rw-r--r--tty.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c
index 87670b12..54bdadba 100644
--- a/options-table.c
+++ b/options-table.c
@@ -307,7 +307,7 @@ const struct options_table_entry options_table[] = {
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_SERVER,
.flags = OPTIONS_TABLE_IS_ARRAY,
- .default_str = "xterm*:clipboard:ccolour:cstyle:title,"
+ .default_str = "xterm*:clipboard:ccolour:cstyle:focus:title,"
"screen*:title",
.separator = ",",
.text = "List of terminal features, used if they cannot be "
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");
}