diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-04-19 00:01:15 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-04-19 00:01:15 +0100 |
commit | a71c262d5f1ff2125797569d474ff21efb7ddc91 (patch) | |
tree | f7066cfd84ac5950ab0b2dc3f5de69204511fa73 /tty.c | |
parent | de4f817bd61d60ac4310052d51ba437826016df0 (diff) | |
parent | f731ae4a2dc6aca565b20dffd6ddf661e585cbb5 (diff) | |
download | rtmux-a71c262d5f1ff2125797569d474ff21efb7ddc91.tar.gz rtmux-a71c262d5f1ff2125797569d474ff21efb7ddc91.tar.bz2 rtmux-a71c262d5f1ff2125797569d474ff21efb7ddc91.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -74,7 +74,7 @@ static void tty_default_attributes(struct tty *, const struct window_pane *, #define tty_use_acs(tty) \ (tty_term_has((tty)->term, TTYC_ACSC) && !((tty)->flags & TTY_UTF8)) #define tty_use_margin(tty) \ - ((tty)->term_type == TTY_VT420 || (tty)->term_type == TTY_ITERM2) + ((tty)->term_type == TTY_VT420) #define tty_pane_full_width(tty, ctx) \ ((ctx)->xoff == 0 && screen_size_x((ctx)->wp->screen) >= (tty)->sx) @@ -251,7 +251,7 @@ tty_start_tty(struct tty *tty) tty->flags |= TTY_FOCUS; tty_puts(tty, "\033[?1004h"); } - tty_puts(tty, "\033[c\033[1337n"); + tty_puts(tty, "\033[c"); } tty->flags |= TTY_STARTED; |