aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2013-11-14 07:51:26 +0000
committerThomas Adam <thomas@xteddy.org>2013-11-14 07:51:26 +0000
commit3e498cdb49c4ef9fcc5a4bf742407768561e795a (patch)
treec43b53acc192c8ed11f0d067e064d1873b296ce2 /tty.c
parent2c08a3a55922651b2d5100ba5778cce74da906b2 (diff)
parent7624800ddc8fa8e51164dc7c615894c086deabef (diff)
downloadrtmux-3e498cdb49c4ef9fcc5a4bf742407768561e795a.tar.gz
rtmux-3e498cdb49c4ef9fcc5a4bf742407768561e795a.tar.bz2
rtmux-3e498cdb49c4ef9fcc5a4bf742407768561e795a.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tty.c b/tty.c
index d5b1aec0..98f603f4 100644
--- a/tty.c
+++ b/tty.c
@@ -224,7 +224,7 @@ tty_start_tty(struct tty *tty)
tty->flags |= TTY_FOCUS;
tty_puts(tty, "\033[?1004h");
}
- tty_puts(tty, "\033[c\033[>4;1m\033[m");
+ tty_puts(tty, "\033[c");
}
tty->cx = UINT_MAX;
@@ -292,7 +292,6 @@ tty_stop_tty(struct tty *tty)
tty->flags &= ~TTY_FOCUS;
tty_puts(tty, "\033[?1004l");
}
- tty_raw(tty, "\033[>4m\033[m");
}
tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP));