texinfo-commits
[Top][All Lists]
Advanced

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

[6654] C-h scrolls backwards


From: Gavin D. Smith
Subject: [6654] C-h scrolls backwards
Date: Tue, 29 Sep 2015 19:36:09 +0000

Revision: 6654
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6654
Author:   gavin
Date:     2015-09-29 19:36:08 +0000 (Tue, 29 Sep 2015)
Log Message:
-----------
C-h scrolls backwards

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/doc/info-stnd.texi
    trunk/info/infomap.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog     2015-09-28 20:27:18 UTC (rev 6653)
+++ trunk/ChangeLog     2015-09-29 19:36:08 UTC (rev 6654)
@@ -1,3 +1,10 @@
+2015-09-29  Gavin Smith  <address@hidden>
+
+       * info/infomap.c (default_emacs_like_info_keys),
+       * info/info-stnd.texi (Miscellaneous Commands):
+       Make C-h scroll backwards, in case the terminal sends C-h for 
+       the delete or backspace key.
+
 2015-09-28  Gavin Smith  <address@hidden>
 
        * doc/texinfo.texi (@table): Change "tables" plural to "table" 

Modified: trunk/doc/info-stnd.texi
===================================================================
--- trunk/doc/info-stnd.texi    2015-09-28 20:27:18 UTC (rev 6653)
+++ trunk/doc/info-stnd.texi    2015-09-29 19:36:08 UTC (rev 6654)
@@ -1917,8 +1917,7 @@
 Read the name of an Info command in the echo area, and then display
 a key sequence which can be typed in order to invoke that command.
 
address@hidden @kbd{C-h} (@code{get-help-window})
address@hidden @kbd{H}
address@hidden @kbd{H} (@code{get-help-window})
 @itemx @kbd{?}
 @itemx @key{F1} (on DOS/Windows only)
 @itemx @kbd{h} and @kbd{H}, vi-like operation

Modified: trunk/info/infomap.c
===================================================================
--- trunk/info/infomap.c        2015-09-28 20:27:18 UTC (rev 6653)
+++ trunk/info/infomap.c        2015-09-29 19:36:08 UTC (rev 6654)
@@ -160,7 +160,7 @@
   CONTROL('b'), NUL,              A_info_backward_char,
   CONTROL('e'), NUL,              A_info_end_of_line,
   CONTROL('f'), NUL,              A_info_forward_char,
-  CONTROL('h'), NUL,              A_info_get_help_window,
+  CONTROL('h'), NUL,              A_info_scroll_backward,
   CONTROL('l'), NUL,              A_info_redraw_display,
   CONTROL('n'), NUL,              A_info_next_line,
   CONTROL('p'), NUL,              A_info_prev_line,
@@ -253,7 +253,7 @@
 
   KEY_RIGHT_ARROW, NUL,         A_info_forward_char,
   KEY_LEFT_ARROW, NUL,          A_info_backward_char,
-  KEY_DELETE, NUL,                A_info_scroll_backward,
+  KEY_DELETE, NUL,              A_info_scroll_backward,
   
   ESC, KEY_PAGE_UP, NUL,        A_info_scroll_other_window_backward,
   ESC, KEY_PAGE_DOWN, NUL,      A_info_scroll_other_window,




reply via email to

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