aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Berry2014-02-27 21:13:56 -0500
committerGlenn Morris2014-02-27 21:13:56 -0500
commit6deb314e66a2b667b29137bc146cc1c75bfef50e (patch)
treec056ebb23abfb2148e6ac8ae00eb7e719c8bb970 /lisp
parent2241d76e834c28dd84732ddda91bf1d559c65191 (diff)
downloademacs-6deb314e66a2b667b29137bc146cc1c75bfef50e.tar.gz
emacs-6deb314e66a2b667b29137bc146cc1c75bfef50e.zip
Add H binding to info, for compatibility with standalone info
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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eeab7470e04..6d8c296d366 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-02-28 Karl Berry <karl@gnu.org>
2
3 * info.el (Info-mode-map): Add H for describe-mode,
4 to synchronize with standalone Info.
5
12014-02-28 Emilio C. Lopes <eclig@gmx.net> 62014-02-28 Emilio C. Lopes <eclig@gmx.net>
2 7
3 * progmodes/sql.el (sql-interactive-mode): 8 * progmodes/sql.el (sql-interactive-mode):
diff --git a/lisp/info.el b/lisp/info.el
index 77f69f914c9..2ae9f99fcdf 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -3962,6 +3962,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
3962 (define-key map "f" 'Info-follow-reference) 3962 (define-key map "f" 'Info-follow-reference)
3963 (define-key map "g" 'Info-goto-node) 3963 (define-key map "g" 'Info-goto-node)
3964 (define-key map "h" 'Info-help) 3964 (define-key map "h" 'Info-help)
3965 (define-key map "H" 'describe-mode)
3965 (define-key map "i" 'Info-index) 3966 (define-key map "i" 'Info-index)
3966 (define-key map "I" 'Info-virtual-index) 3967 (define-key map "I" 'Info-virtual-index)
3967 (define-key map "l" 'Info-history-back) 3968 (define-key map "l" 'Info-history-back)