diff options
author | 2012-11-22 14:10:53 +0000 | |
---|---|---|
committer | 2012-11-22 14:10:53 +0000 | |
commit | c09e18fff349f8bfa1a1875b17d0f38210b698a4 (patch) | |
tree | 5e3ae3737d761e44ec4bd9d17975e91111849326 /usr.bin/tmux/tty.c | |
parent | Don't bother to store the return value from pci_set_powerstate() as the (diff) | |
download | wireguard-openbsd-c09e18fff349f8bfa1a1875b17d0f38210b698a4.tar.xz wireguard-openbsd-c09e18fff349f8bfa1a1875b17d0f38210b698a4.zip |
Don't need to send DECSL on detaching now, the code using higher levels
has gone.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 94f237cbbe6..46a0a24284b 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.142 2012/09/29 06:57:56 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.143 2012/11/22 14:10:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -289,9 +289,6 @@ tty_stop_tty(struct tty *tty) tty_raw(tty, "\033[?1000l"); tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP)); - - if (tty->xterm_version > 270) - tty_raw(tty, "\033[61;1\"p"); } void |