summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tty-keys.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2020-05-16 15:41:54 +0000
committernicm <nicm@openbsd.org>2020-05-16 15:41:54 +0000
commit572e1496bc6896f2d3b58849f2ec4171a551eeb2 (patch)
tree73a930f9663d1c2a14dc6ae25b9646f0f3478ccb /usr.bin/tmux/tty-keys.c
parentExport TERM_PROGRAM and TERM_PROGRAM_VERSION like various other (diff)
downloadwireguard-openbsd-572e1496bc6896f2d3b58849f2ec4171a551eeb2.tar.xz
wireguard-openbsd-572e1496bc6896f2d3b58849f2ec4171a551eeb2.zip
Only redraw popup on the client it belongs to.
Diffstat (limited to 'usr.bin/tmux/tty-keys.c')
-rw-r--r--usr.bin/tmux/tty-keys.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/tmux/tty-keys.c b/usr.bin/tmux/tty-keys.c
index 9a8ab2c7b25..c6191878cd1 100644
--- a/usr.bin/tmux/tty-keys.c
+++ b/usr.bin/tmux/tty-keys.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty-keys.c,v 1.130 2020/05/16 14:30:17 nicm Exp $ */
+/* $OpenBSD: tty-keys.c,v 1.131 2020/05/16 15:41:54 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -1064,10 +1064,7 @@ tty_keys_device_attributes(struct tty *tty, const char *buf, size_t len,
/* Add terminal features. */
switch (p[0]) {
case 41: /* VT420 */
- tty_add_features(&c->term_features,
- "margins,"
- "rectfill",
- ",");
+ tty_add_features(&c->term_features, "margins,rectfill", ",");
break;
case 'M': /* mintty */
tty_default_features(&c->term_features, "mintty", 0);