texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[8016] remove ineffectual bindings for echo area


From: gavinsmith0123
Subject: [8016] remove ineffectual bindings for echo area
Date: Tue, 7 Aug 2018 11:22:10 -0400 (EDT)

Revision: 8016
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=8016
Author:   gavin
Date:     2018-08-07 11:22:10 -0400 (Tue, 07 Aug 2018)
Log Message:
-----------
remove ineffectual bindings for echo area

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/info/infomap.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2018-08-07 14:45:48 UTC (rev 8015)
+++ trunk/ChangeLog     2018-08-07 15:22:10 UTC (rev 8016)
@@ -1,5 +1,14 @@
 2018-08-07  Gavin Smith  <address@hidden>
 
+       * info/infomap.c (default_emacs_like_ea_keys)
+       (default_vi_like_ea_keys): Remove ineffectual key bindings.
+       Remove key bindings for sequences beginning with ESC, as these 
+       have not worked since ESC was made an abort key.  Remove binding 
+       for "C-x o" as it is not possible to escape the echo area any 
+       more.  Remove bindings for SPC and ? which are self-inserting.
+
+2018-08-07  Gavin Smith  <address@hidden>
+
        * info/t/Init-inter.inc: File removed.  All contents moved into
        Init-test.inc.
 

Modified: trunk/info/infomap.c
===================================================================
--- trunk/info/infomap.c        2018-08-07 14:45:48 UTC (rev 8015)
+++ trunk/info/infomap.c        2018-08-07 15:22:10 UTC (rev 8016)
@@ -304,9 +304,7 @@
   CONTROL('y'), NUL,              A_ea_yank,
   LFD, NUL,                       A_ea_newline,
   RET, NUL,                       A_ea_newline,
-  SPC, NUL,                       A_ea_complete,
   TAB, NUL,                       A_ea_complete,
-  '?', NUL,                       A_ea_possible_completions,
 #ifdef __MSDOS__
   /* PC users will lynch me if I don't give them their usual DEL
      effect...  */
@@ -314,16 +312,12 @@
 #else
   KEY_DELETE, NUL,                       A_ea_rubout,
 #endif
-  CONTROL('x'), 'o', NUL,         A_info_next_window,
   CONTROL('x'), KEY_DELETE, NUL,         A_ea_backward_kill_line,
 
   KEY_RIGHT_ARROW, NUL,           A_ea_forward,
   KEY_LEFT_ARROW, NUL,            A_ea_backward,
-  ESC, KEY_RIGHT_ARROW, NUL,   A_ea_forward_word,
-  ESC, KEY_LEFT_ARROW, NUL,    A_ea_backward_word,
   KEY_HOME, NUL,                 A_ea_beg_of_line,
   KEY_END, NUL,                  A_ea_end_of_line,
-  ESC, KEY_DELETE, NUL,  A_ea_backward_kill_word,
 };
 
 
@@ -535,10 +529,7 @@
   CONTROL('y'), NUL,              A_ea_yank,
   LFD, NUL,                       A_ea_newline,
   RET, NUL,                       A_ea_newline,
-  SPC, NUL,                       A_ea_complete,
   TAB, NUL,                       A_ea_complete,
-  '?', NUL,                       A_ea_possible_completions,
-  CONTROL('x'), 'o', NUL,         A_info_next_window,
   
   KEY_RIGHT_ARROW, NUL,         A_ea_forward,
   KEY_LEFT_ARROW, NUL,          A_ea_backward,
@@ -549,9 +540,6 @@
 #else
   KEY_DELETE, NUL,              A_ea_rubout,
 #endif
-  ESC, KEY_RIGHT_ARROW, NUL,    A_ea_forward_word,
-  ESC, KEY_LEFT_ARROW, NUL,     A_ea_backward_word,
-  ESC, KEY_DELETE, NUL,         A_ea_kill_word,
   CONTROL('x'), KEY_DELETE, NUL,A_ea_backward_kill_line,
 };
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]