]> git.eshelyaron.com Git - emacs.git/commitdiff
Add H binding to info, for compatibility with standalone info
authorKarl Berry <karl@gnu.org>
Fri, 28 Feb 2014 02:13:56 +0000 (21:13 -0500)
committerGlenn Morris <rgm@gnu.org>
Fri, 28 Feb 2014 02:13:56 +0000 (21:13 -0500)
Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00309.html

* lisp/info.el (Info-mode-map): Add H for describe-mode,
to synchronize with standalone Info.

* doc/misc/info.texi (Top): Mention H for a summary of all commands.

doc/misc/ChangeLog
doc/misc/info.texi
lisp/ChangeLog
lisp/info.el

index f017e9479a428a7cf3596659a573e2bcd58ae541..27b553a82203ded624aea8a60e8212e32750fe5a 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-28  Karl Berry  <karl@gnu.org>
+
+       * info.texi (Top): Mention H for a summary of all commands.
+
 2014-02-25  Glenn Morris  <rgm@gnu.org>
 
        * edt.texi (Quick start, Starting emulation): Update hook details.
index ad317dc638030a881b152f3d2bc73e0b9343e11b..001f29c4f3f9c7a727f1820501205c60d67fa8ee 100644 (file)
@@ -69,6 +69,8 @@ instruction sequence.
 To read about advanced Info commands, type @kbd{n} twice.  This
 brings you to @cite{Advanced Info Commands}, skipping over the `Getting
 Started' chapter.
+
+Type @kbd{H} to see a summary of all available commands.
 @end ifinfo
 @end ifnottex
 
index eeab7470e043ae40b31e48c658da32678512c8a9..6d8c296d366f9f0b1d0fa20b491da9a3f6589c27 100644 (file)
@@ -1,3 +1,8 @@
+2014-02-28  Karl Berry  <karl@gnu.org>
+
+       * info.el (Info-mode-map): Add H for describe-mode,
+       to synchronize with standalone Info.
+
 2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
 
        * progmodes/sql.el (sql-interactive-mode):
index 77f69f914c9b226ddcfd504b46a3b2037121052d..2ae9f99fcdf82b3aa1d526b09883882159c557ba 100644 (file)
@@ -3962,6 +3962,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
     (define-key map "f" 'Info-follow-reference)
     (define-key map "g" 'Info-goto-node)
     (define-key map "h" 'Info-help)
+    (define-key map "H" 'describe-mode)
     (define-key map "i" 'Info-index)
     (define-key map "I" 'Info-virtual-index)
     (define-key map "l" 'Info-history-back)