From: Juri Linkov Date: Wed, 11 Dec 2013 00:32:00 +0000 (+0200) Subject: * src/term.c (term_get_fkeys_1): Remove non-standard IBM terminfo X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=26ec2ce909d55c1d52f84fc0511cb561cdd77785;p=emacs.git * src/term.c (term_get_fkeys_1): Remove non-standard IBM terminfo as obsolete to avoid conflicts with . Fixes: debbugs:13471 --- diff --git a/src/ChangeLog b/src/ChangeLog index 25271d6f6b8..a263867d617 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2013-12-11 Juri Linkov + + * term.c (term_get_fkeys_1): Remove non-standard IBM terminfo + as obsolete to avoid conflicts with . (Bug#13471) + 2013-12-10 Dmitry Antipov * xdisp.c (display_tool_bar_line): Don't extend on a previously diff --git a/src/term.c b/src/term.c index 4d900020ce6..85a994bf2bc 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 }