diff options
| author | Eli Zaretskii | 2016-11-07 18:57:28 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-11-07 18:57:28 +0200 |
| commit | 3b199f7c77906f13a778b38a3b5fcdfb59a56ceb (patch) | |
| tree | f6b9e876b77e6ac891b8aebea2a1d7adc12410cd | |
| parent | 93d3a0e3025c0b939856a75c45494c41c6d357d9 (diff) | |
| download | emacs-3b199f7c77906f13a778b38a3b5fcdfb59a56ceb.tar.gz emacs-3b199f7c77906f13a778b38a3b5fcdfb59a56ceb.zip | |
Improve documentation of some Help commands
* doc/emacs/help.texi (Help Mode): Fix mistake in key sequences.
Mention the 'l' and 'r' keys.
(Misc Help): Mention that 'C-h m' describes key bindings.
(Bug#24890)
| -rw-r--r-- | doc/emacs/help.texi | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi index 4b7b7fc6315..64da8907172 100644 --- a/doc/emacs/help.texi +++ b/doc/emacs/help.texi | |||
| @@ -411,8 +411,10 @@ Follow a hyperlink that you click on. | |||
| 411 | Show all documentation about the symbol at point | 411 | Show all documentation about the symbol at point |
| 412 | (@code{help-follow-symbol}). | 412 | (@code{help-follow-symbol}). |
| 413 | @item C-c C-f | 413 | @item C-c C-f |
| 414 | @itemx r | ||
| 414 | Go forward to the next help topic (@code{help-go-forward}). | 415 | Go forward to the next help topic (@code{help-go-forward}). |
| 415 | @item C-c C-b | 416 | @item C-c C-b |
| 417 | @itemx l | ||
| 416 | Go back to the previous help topic (@code{help-go-back}). | 418 | Go back to the previous help topic (@code{help-go-back}). |
| 417 | @end table | 419 | @end table |
| 418 | 420 | ||
| @@ -422,15 +424,18 @@ Go back to the previous help topic (@code{help-go-back}). | |||
| 422 | @findex help-go-forward | 424 | @findex help-go-forward |
| 423 | @kindex RET @r{(Help mode)} | 425 | @kindex RET @r{(Help mode)} |
| 424 | @kindex C-c C-b @r{(Help mode)} | 426 | @kindex C-c C-b @r{(Help mode)} |
| 427 | @kindex l @r{(Help mode)} | ||
| 425 | @kindex C-c C-f @r{(Help mode)} | 428 | @kindex C-c C-f @r{(Help mode)} |
| 429 | @kindex r @r{(Help mode)} | ||
| 426 | When a function name, variable name, or face name (@pxref{Faces}) | 430 | When a function name, variable name, or face name (@pxref{Faces}) |
| 427 | appears in the documentation in the help buffer, it is normally an | 431 | appears in the documentation in the help buffer, it is normally an |
| 428 | underlined @dfn{hyperlink}. To view the associated documentation, | 432 | underlined @dfn{hyperlink}. To view the associated documentation, |
| 429 | move point there and type @key{RET} (@code{help-follow}), or click on | 433 | move point there and type @key{RET} (@code{help-follow}), or click on |
| 430 | the hyperlink with @kbd{mouse-1} or @kbd{mouse-2}. Doing so replaces | 434 | the hyperlink with @kbd{mouse-1} or @kbd{mouse-2}. Doing so replaces |
| 431 | the contents of the help buffer; to retrace your steps, type @kbd{C-c | 435 | the contents of the help buffer; to retrace your steps, type @kbd{C-c |
| 432 | C-b} (@code{help-go-back}). While retracing your steps, you can go | 436 | C-b} or @kbd{l} (@code{help-go-back}). While retracing your steps, |
| 433 | forward by using @kbd{C-c C-b} (@code{help-go-forward}). | 437 | you can go forward by using @kbd{C-c C-f} or @kbd{r} |
| 438 | (@code{help-go-forward}). | ||
| 434 | 439 | ||
| 435 | @cindex URL, viewing in help | 440 | @cindex URL, viewing in help |
| 436 | @cindex help, viewing web pages | 441 | @cindex help, viewing web pages |
| @@ -556,7 +561,8 @@ commands that you are not familiar with, you can use @kbd{C-h k} or | |||
| 556 | Each Emacs major mode typically redefines a few keys and makes other | 561 | Each Emacs major mode typically redefines a few keys and makes other |
| 557 | changes in how editing works. @kbd{C-h m} (@code{describe-mode}) | 562 | changes in how editing works. @kbd{C-h m} (@code{describe-mode}) |
| 558 | displays documentation on the current major mode, which normally | 563 | displays documentation on the current major mode, which normally |
| 559 | describes the commands and features that are changed in this mode. | 564 | describes the commands and features that are changed in this mode, and |
| 565 | also its key bindings. | ||
| 560 | 566 | ||
| 561 | @kindex C-h b | 567 | @kindex C-h b |
| 562 | @findex describe-bindings | 568 | @findex describe-bindings |