diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-22 09:36:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-05-22 09:36:13 +0000 |
commit | e4f16e73e6ca7d18033c64356b320d6dc69fdb55 (patch) | |
tree | e3d522b31b070ee254f5e7857f5df25a4b077fdd /usr.bin/tmux/tmux.h | |
parent | 40483d4208a15daf8ffbd3a51470be89578dbacb (diff) |
If there are any terminals with insert mode but not ich1, they can go
through the slow path. Tidies code slightly.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index eee0d554bff..98580934089 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.332 2012/05/21 18:27:42 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.333 2012/05/22 09:36:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -316,7 +316,6 @@ enum tty_code_code { TTYC_RI, /* scroll_reverse, sr */ TTYC_RMACS, /* exit_alt_charset_mode */ TTYC_RMCUP, /* exit_ca_mode, te */ - TTYC_RMIR, /* exit_insert_mode, ei */ TTYC_RMKX, /* keypad_local, ke */ TTYC_SETAB, /* set_a_background, AB */ TTYC_SETAF, /* set_a_foreground, AF */ @@ -324,7 +323,6 @@ enum tty_code_code { TTYC_SITM, /* enter_italics_mode, it */ TTYC_SMACS, /* enter_alt_charset_mode, as */ TTYC_SMCUP, /* enter_ca_mode, ti */ - TTYC_SMIR, /* enter_insert_mode, im */ TTYC_SMKX, /* keypad_xmit, ks */ TTYC_SMSO, /* enter_standout_mode, so */ TTYC_SMUL, /* enter_underline_mode, us */ |