aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2013-12-11 02:32:00 +0200
committerJuri Linkov2013-12-11 02:32:00 +0200
commit26ec2ce909d55c1d52f84fc0511cb561cdd77785 (patch)
treefa92d090c7cd16fa6a991ac5832532024d548f93
parentb68cf43cfbfb9591053dc5f616c1a6c1147748dc (diff)
downloademacs-26ec2ce909d55c1d52f84fc0511cb561cdd77785.tar.gz
emacs-26ec2ce909d55c1d52f84fc0511cb561cdd77785.zip
* src/term.c (term_get_fkeys_1): Remove non-standard IBM terminfo
as obsolete to avoid conflicts with <S-up>. Fixes: debbugs:13471
-rw-r--r--src/ChangeLog5
-rw-r--r--src/term.c12
2 files changed, 5 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 25271d6f6b8..a263867d617 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12013-12-11 Juri Linkov <juri@jurta.org>
2
3 * term.c (term_get_fkeys_1): Remove non-standard IBM terminfo
4 as obsolete to avoid conflicts with <S-up>. (Bug#13471)
5
12013-12-10 Dmitry Antipov <dmantipov@yandex.ru> 62013-12-10 Dmitry Antipov <dmantipov@yandex.ru>
2 7
3 * xdisp.c (display_tool_bar_line): Don't extend on a previously 8 * 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)
1422 CONDITIONAL_REASSIGN ("kD", "kI", "insert"); 1422 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1423 /* if there's no key_end keycap, map key_ll to 'end' keysym */ 1423 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1424 CONDITIONAL_REASSIGN ("@7", "kH", "end"); 1424 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1425
1426 /* IBM has their own non-standard dialect of terminfo.
1427 If the standard name isn't found, try the IBM name. */
1428 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1429 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1430 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1431 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1432 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1433 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1434 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1435 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1436 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1437#undef CONDITIONAL_REASSIGN 1425#undef CONDITIONAL_REASSIGN
1438 } 1426 }
1439 1427