diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 19:10:06 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-15 19:10:06 +0100 |
commit | 67090dd91de2a2bf9e04dfd6a084cb4e113e3753 (patch) | |
tree | 5618b68bab6645a9c8ff0d29a2d5b37a83f5b93f /tty-keys.c | |
parent | 401f1977501894e89f13d09508acc38e1c98f2d0 (diff) | |
download | rtmux-67090dd91de2a2bf9e04dfd6a084cb4e113e3753.tar.gz rtmux-67090dd91de2a2bf9e04dfd6a084cb4e113e3753.tar.bz2 rtmux-67090dd91de2a2bf9e04dfd6a084cb4e113e3753.zip |
XTerm not xterm.
Diffstat (limited to 'tty-keys.c')
-rw-r--r-- | tty-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1293,7 +1293,7 @@ tty_keys_extended_device_attributes(struct tty *tty, const char *buf, else if (strncmp(tmp, "tmux ", 5) == 0) tty_default_features(&c->term_features, "tmux", 0); else if (strncmp(tmp, "XTerm(", 6) == 0) - tty_default_features(&c->term_features, "xterm", 0); + tty_default_features(&c->term_features, "XTerm", 0); else if (strncmp(tmp, "mintty ", 7) == 0) tty_default_features(&c->term_features, "mintty", 0); log_debug("%s: received extended DA %.*s", c->name, (int)*size, buf); |