diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-05 12:39:20 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-05 12:39:20 +0100 |
commit | 32c134f5a9780ba86635a48814d7fa0e4fd72974 (patch) | |
tree | afff7f450fc6602371501470a42e276cc673bce1 | |
parent | 23b4e1b9d830fa8b0a62c25d08453ae64e0deb9b (diff) | |
download | rtmux-32c134f5a9780ba86635a48814d7fa0e4fd72974.tar.gz rtmux-32c134f5a9780ba86635a48814d7fa0e4fd72974.tar.bz2 rtmux-32c134f5a9780ba86635a48814d7fa0e4fd72974.zip |
Wrap a line.
-rw-r--r-- | tty-keys.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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); |