diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 10:40:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-22 10:40:22 +0000 |
commit | 79f5fe6f5bb7f24ab33ff365ff522c2c85df338d (patch) | |
tree | bbd1fa9059529f6afd4823e50152e993ae6351ab | |
parent | 2f5fa4ee9d8fface2e5375ff777320b9613e9b6a (diff) | |
download | rtmux-79f5fe6f5bb7f24ab33ff365ff522c2c85df338d.tar.gz rtmux-79f5fe6f5bb7f24ab33ff365ff522c2c85df338d.tar.bz2 rtmux-79f5fe6f5bb7f24ab33ff365ff522c2c85df338d.zip |
Use tty_raw on stop, not tty_puts.
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -284,7 +284,7 @@ tty_stop_tty(struct tty *tty) tty_raw(tty, "\033[?1000l\033[?1006l\033[?1005l"); if (tty_term_has(tty->term, TTYC_XT)) - tty_puts(tty, "\033[>4m"); + tty_raw(tty, "\033[>4m"); tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP)); |