aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorJuri Linkov <[email protected]>2013-12-11 02:32:00 +0200
committerJuri Linkov <[email protected]>2013-12-11 02:32:00 +0200
commit26ec2ce909d55c1d52f84fc0511cb561cdd77785 (patch)
treefa92d090c7cd16fa6a991ac5832532024d548f93 /src/term.c
parentb68cf43cfbfb9591053dc5f616c1a6c1147748dc (diff)
* src/term.c (term_get_fkeys_1): Remove non-standard IBM terminfo
as obsolete to avoid conflicts with <S-up>. Fixes: debbugs:13471
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/term.c b/src/term.c
index 4d900020ce..85a994bf2b 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1422,18 +1422,6 @@ term_get_fkeys_1 (void)
CONDITIONAL_REASSIGN ("kD", "kI", "insert");
/* if there's no key_end keycap, map key_ll to 'end' keysym */
CONDITIONAL_REASSIGN ("@7", "kH", "end");
-
- /* IBM has their own non-standard dialect of terminfo.
- If the standard name isn't found, try the IBM name. */
- CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
- CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
- CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
- CONDITIONAL_REASSIGN ("%7", "ki", "menu");
- CONDITIONAL_REASSIGN ("@7", "kw", "end");
- CONDITIONAL_REASSIGN ("F1", "k<", "f11");
- CONDITIONAL_REASSIGN ("F2", "k>", "f12");
- CONDITIONAL_REASSIGN ("%1", "kq", "help");
- CONDITIONAL_REASSIGN ("*6", "kU", "select");
#undef CONDITIONAL_REASSIGN
}