aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/info.texi2
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el1
4 files changed, 12 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index f017e9479a4..27b553a8220 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
12014-02-28 Karl Berry <karl@gnu.org>
2
3 * info.texi (Top): Mention H for a summary of all commands.
4
12014-02-25 Glenn Morris <rgm@gnu.org> 52014-02-25 Glenn Morris <rgm@gnu.org>
2 6
3 * edt.texi (Quick start, Starting emulation): Update hook details. 7 * edt.texi (Quick start, Starting emulation): Update hook details.
diff --git a/doc/misc/info.texi b/doc/misc/info.texi
index ad317dc6380..001f29c4f3f 100644
--- a/doc/misc/info.texi
+++ b/doc/misc/info.texi
@@ -69,6 +69,8 @@ instruction sequence.
69To read about advanced Info commands, type @kbd{n} twice. This 69To read about advanced Info commands, type @kbd{n} twice. This
70brings you to @cite{Advanced Info Commands}, skipping over the `Getting 70brings you to @cite{Advanced Info Commands}, skipping over the `Getting
71Started' chapter. 71Started' chapter.
72
73Type @kbd{H} to see a summary of all available commands.
72@end ifinfo 74@end ifinfo
73@end ifnottex 75@end ifnottex
74 76
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)