texinfo-commits
[Top][All Lists]
Advanced

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

[5622] echo-area-insert in help window


From: Gavin D. Smith
Subject: [5622] echo-area-insert in help window
Date: Sat, 31 May 2014 22:26:27 +0000

Revision: 5622
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5622
Author:   gavin
Date:     2014-05-31 22:26:26 +0000 (Sat, 31 May 2014)
Log Message:
-----------
echo-area-insert in help window

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2014-05-31 21:02:20 UTC (rev 5621)
+++ trunk/ChangeLog     2014-05-31 22:26:26 UTC (rev 5622)
@@ -1,5 +1,10 @@
 2014-05-31  Gavin Smith  <address@hidden>
 
+       * info/infodoc.c (dump_map_to_text_buffer): Hide "echo-area-insert"
+       entries in help window.
+
+2014-05-31  Gavin Smith  <address@hidden>
+
        * info/window.h (WINDOW): 'current' field removed.
        * info/window.c (set_remembered_pagetop_and_point)
        (remember_window_and_node, forward_move_node_structure, kill_node):
@@ -17,7 +22,6 @@
        (remember_window_and_node): NODE argument removed.  All callers
        updated.
 
-
 2014-05-31  Gavin Smith  <address@hidden>
 
        * info/window.h (WINDOW): Fields added from INFO_WINDOW:

Modified: trunk/info/infodoc.c
===================================================================
--- trunk/info/infodoc.c        2014-05-31 21:02:20 UTC (rev 5621)
+++ trunk/info/infodoc.c        2014-05-31 22:26:26 UTC (rev 5622)
@@ -213,10 +213,13 @@
           register int last;
           char *doc, *name;
 
-          /* Do not display "Run command bound to this key's
-             lowercase variant" in help window. */
+          /* Hide some key mappings.  Do not display "Run command bound to
+             this key's lowercase variant" in help window, and omit lines
+             like "M-: .. M->(echo-area-insert)    Insert this character". */
           if (InfoFunction (map[i].function)
-               == (VFunction *) info_do_lowercase_version)
+               == (VFunction *) info_do_lowercase_version
+              || InfoFunction (map[i].function)
+               == (VFunction *) ea_insert)
             continue;
 
           doc = function_documentation (map[i].function);




reply via email to

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