diff options
author | 2017-02-21 14:18:12 +0000 | |
---|---|---|
committer | 2017-02-21 14:18:12 +0000 | |
commit | 1b1950643421c87a863c501f7bcb61b771c38add (patch) | |
tree | f8986f65ad539850ea7e407c435554450d2cfba1 | |
parent | sync (diff) | |
download | wireguard-openbsd-1b1950643421c87a863c501f7bcb61b771c38add.tar.xz wireguard-openbsd-1b1950643421c87a863c501f7bcb61b771c38add.zip |
Don't need is1,is2,is3 so remove them.
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 | ||||
-rw-r--r-- | usr.bin/tmux/tty-term.c | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 4dff98d2a95..4bebc36f913 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.727 2017/02/14 18:13:05 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.728 2017/02/21 14:18:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -243,9 +243,6 @@ enum tty_code_code { TTYC_IL1, /* insert_line, il */ TTYC_INDN, /* parm_index, indn */ TTYC_INVIS, /* enter_secure_mode, mk */ - TTYC_IS1, /* init_1string, i1 */ - TTYC_IS2, /* init_2string, i2 */ - TTYC_IS3, /* init_3string, i3 */ TTYC_KCBT, /* key_btab, kB */ TTYC_KCUB1, /* key_left, kl */ TTYC_KCUD1, /* key_down, kd */ diff --git a/usr.bin/tmux/tty-term.c b/usr.bin/tmux/tty-term.c index 227d4d2ef49..ccc07f85c8c 100644 --- a/usr.bin/tmux/tty-term.c +++ b/usr.bin/tmux/tty-term.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-term.c,v 1.51 2017/02/08 17:31:09 nicm Exp $ */ +/* $OpenBSD: tty-term.c,v 1.52 2017/02/21 14:18:12 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -97,9 +97,6 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_IL1] = { TTYCODE_STRING, "il1" }, [TTYC_INDN] = { TTYCODE_STRING, "indn" }, [TTYC_INVIS] = { TTYCODE_STRING, "invis" }, - [TTYC_IS1] = { TTYCODE_STRING, "is1" }, - [TTYC_IS2] = { TTYCODE_STRING, "is2" }, - [TTYC_IS3] = { TTYCODE_STRING, "is3" }, [TTYC_KCBT] = { TTYCODE_STRING, "kcbt" }, [TTYC_KCUB1] = { TTYCODE_STRING, "kcub1" }, [TTYC_KCUD1] = { TTYCODE_STRING, "kcud1" }, |