summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2013-10-20 09:37:51 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2013-10-20 09:37:51 +0000
commit001f95d221e017a63d388aedbfed8bbb7a4e05c7 (patch)
tree301e1c5a887cafb4087bd0b0376b08a344127fda /usr.bin
parent406f5c093970c5b2d705bfe070f10d4625e0419d (diff)
Don't turn on modifyOtherKeys by default, it is annoying if tmux is
killed and it's left on and we can't turn it on and off like we do for attributes. It's not hard to enable in .Xresources or .Xdefaults anyway.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tmux/tty.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c
index 30881f1c0df..b538b0cb595 100644
--- a/usr.bin/tmux/tty.c
+++ b/usr.bin/tmux/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.162 2013/06/23 13:10:48 nicm Exp $ */
+/* $OpenBSD: tty.c,v 1.163 2013/10/20 09:37:50 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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));