aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2013-12-20 14:55:44 +0100
committerTassilo Horn2013-12-20 14:55:44 +0100
commita34a0ac8914ee6bb968dc3b3b5f9fc3ec0d5ebea (patch)
treebb5e71132af2d78b08c0a0344c75d565ec9a880c
parentcbaece6a984b0dec81bedc57bfd6405c3b9589ba (diff)
downloademacs-a34a0ac8914ee6bb968dc3b3b5f9fc3ec0d5ebea.tar.gz
emacs-a34a0ac8914ee6bb968dc3b3b5f9fc3ec0d5ebea.zip
Document prefix key description in terms of ?
* doc/emacs/help.texi: Document that `?' now also shows subcommands of prefix keys.
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/help.texi23
-rw-r--r--etc/NEWS1
3 files changed, 19 insertions, 10 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index c5330da779b..2a7a03d5278 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,8 @@
12013-12-20 Tassilo Horn <tsdh@gnu.org>
2
3 * help.texi: Document that `?' now also shows subcommands of
4 prefix keys.
5
12013-12-17 Chong Yidong <cyd@gnu.org> 62013-12-17 Chong Yidong <cyd@gnu.org>
2 7
3 * killing.texi (Appending Kills): Note that append-next-kill can 8 * killing.texi (Appending Kills): Note that append-next-kill can
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi
index e41d68a5f51..2a31a96c004 100644
--- a/doc/emacs/help.texi
+++ b/doc/emacs/help.texi
@@ -55,11 +55,12 @@ This displays the available Emacs packages based on keywords.
55@xref{Package Keywords}. 55@xref{Package Keywords}.
56@end table 56@end table
57 57
58 @kbd{C-h} or @key{F1} means ``help'' in various other contexts as 58 @kbd{C-h}, @key{F1}, or @kbd{?} means ``help'' in various other
59well. For instance, you can type them after a prefix key to view a 59contexts as well. For instance, you can type them after a prefix key
60list of the keys that can follow the prefix key. (A few prefix keys 60to view a list of the keys that can follow the prefix key. (A few
61don't support @kbd{C-h} in this way, because they define other 61prefix keys don't support @kbd{C-h} or @kbd{?} in this way, because
62meanings for it, but they all support @key{F1} for help.) 62they define other meanings for it, but they all support @key{F1} for
63help.)
63 64
64@menu 65@menu
65* Help Summary:: Brief list of all Help commands. 66* Help Summary:: Brief list of all Help commands.
@@ -549,11 +550,13 @@ Emacs Lisp Reference Manual}).
549 550
550@findex describe-prefix-bindings 551@findex describe-prefix-bindings
551 You can get a list of subcommands for a particular prefix key by 552 You can get a list of subcommands for a particular prefix key by
552typing @kbd{C-h} (@code{describe-prefix-bindings}) after the prefix 553typing @kbd{C-h}, @kbd{?}, or @kbd{F1}
553key. (There are a few prefix keys for which this does not 554(@code{describe-prefix-bindings}) after the prefix key. (There are a
554work---those that provide their own bindings for @kbd{C-h}. One of 555few prefix keys for which not all of these keys work---those that
555these is @key{ESC}, because @kbd{@key{ESC} C-h} is actually 556provide their own bindings for one of them. One of these prefix keys
556@kbd{C-M-h}, which marks a defun.) 557is @key{ESC} in combination with @kbd{C-h}, because @kbd{ESC C-h} is
558actually @kbd{C-M-h}, which marks a defun. However, @kbd{ESC F1} and
559@kbd{ESC ?} work fine.)
557 560
558@node Help Files 561@node Help Files
559@section Help Files 562@section Help Files
diff --git a/etc/NEWS b/etc/NEWS
index be72ca58563..fe2dd14e035 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -102,6 +102,7 @@ customize the option `tty-menu-open-use-tmm' to a non-nil value.
102(Typing M-` will always invoke `tmm-menubar', even if 102(Typing M-` will always invoke `tmm-menubar', even if
103`tty-menu-open-use-tmm' is nil.) 103`tty-menu-open-use-tmm' is nil.)
104 104
105+++
105** Key ? also describes prefix bindings like C-h. 106** Key ? also describes prefix bindings like C-h.
106 107
107+++ 108+++