diff options
| author | Eli Zaretskii | 2018-01-19 21:18:03 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-01-19 21:18:03 +0200 |
| commit | 7f48a11216fc12f1aef8158f82e5a0a0706f51af (patch) | |
| tree | 6de39613d1682b964143ffd95352703025792945 | |
| parent | 728ded05f617d48f4a693713d72af872395ebd55 (diff) | |
| download | emacs-7f48a11216fc12f1aef8158f82e5a0a0706f51af.tar.gz emacs-7f48a11216fc12f1aef8158f82e5a0a0706f51af.zip | |
Improve the Emacs manual as suggested in emacs-manual-bugs
* doc/emacs/killing.texi (Deletion and Killing): Add
cross-reference to "Kill Ring".
* doc/emacs/help.texi (Help Mode, Package Keywords): Improve
wording. Suggested by Will Korteland <emacs-devel@korte.land> in
emacs-manual-bugs@gnu.org.
| -rw-r--r-- | doc/emacs/help.texi | 16 | ||||
| -rw-r--r-- | doc/emacs/killing.texi | 14 |
2 files changed, 15 insertions, 15 deletions
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi index 0aa4c501c2a..d4a03c746db 100644 --- a/doc/emacs/help.texi +++ b/doc/emacs/help.texi | |||
| @@ -462,14 +462,14 @@ command (@pxref{Browse-URL}). | |||
| 462 | @findex backward-button | 462 | @findex backward-button |
| 463 | In a help buffer, @key{TAB} (@code{forward-button}) moves point | 463 | In a help buffer, @key{TAB} (@code{forward-button}) moves point |
| 464 | forward to the next hyperlink, while @kbd{S-@key{TAB}} | 464 | forward to the next hyperlink, while @kbd{S-@key{TAB}} |
| 465 | (@code{backward-button}) point back to the previous hyperlink. These | 465 | (@code{backward-button}) moves point back to the previous hyperlink. |
| 466 | commands act cyclically; for instance, typing @key{TAB} at the last | 466 | These commands act cyclically; for instance, typing @key{TAB} at the |
| 467 | hyperlink moves back to the first hyperlink. | 467 | last hyperlink moves back to the first hyperlink. |
| 468 | 468 | ||
| 469 | To view all documentation about any symbol in the text, move point | 469 | To view all documentation about any symbol in the text, move point |
| 470 | to there and type @kbd{C-c C-c} (@code{help-follow-symbol}). This | 470 | to the symbol and type @kbd{C-c C-c} (@code{help-follow-symbol}). |
| 471 | shows all available documentation about the symbol---as a variable, | 471 | This shows all available documentation about the symbol---as a |
| 472 | function and/or face. | 472 | variable, function and/or face. |
| 473 | 473 | ||
| 474 | @node Package Keywords | 474 | @node Package Keywords |
| 475 | @section Keyword Search for Packages | 475 | @section Keyword Search for Packages |
| @@ -495,8 +495,8 @@ buffer (@pxref{Package Menu}). | |||
| 495 | package (@pxref{Packages}, and displays a help buffer describing the | 495 | package (@pxref{Packages}, and displays a help buffer describing the |
| 496 | attributes of the package and the features that it implements. The | 496 | attributes of the package and the features that it implements. The |
| 497 | buffer lists the keywords that relate to the package in the form of | 497 | buffer lists the keywords that relate to the package in the form of |
| 498 | buttons. Click on a button to see other packages related to that | 498 | buttons. Click on a button with @kbd{mouse-1} or @kbd{mouse-2} to see |
| 499 | keyword. | 499 | the list of other packages related to that keyword. |
| 500 | 500 | ||
| 501 | @node Language Help | 501 | @node Language Help |
| 502 | @section Help for International Language Support | 502 | @section Help for International Language Support |
diff --git a/doc/emacs/killing.texi b/doc/emacs/killing.texi index 7d95a440e33..9c9b85aa3d0 100644 --- a/doc/emacs/killing.texi +++ b/doc/emacs/killing.texi | |||
| @@ -33,13 +33,13 @@ killing many different types of syntactic units. | |||
| 33 | @cindex cutting text | 33 | @cindex cutting text |
| 34 | @cindex deletion | 34 | @cindex deletion |
| 35 | Most commands which erase text from the buffer save it in the kill | 35 | Most commands which erase text from the buffer save it in the kill |
| 36 | ring. These are known as @dfn{kill} commands, and their names | 36 | ring (@pxref{Kill Ring}). These are known as @dfn{kill} commands, and |
| 37 | normally contain the word @samp{kill} (e.g., @code{kill-line}). The | 37 | their names normally contain the word @samp{kill} (e.g., |
| 38 | kill ring stores several recent kills, not just the last one, so | 38 | @code{kill-line}). The kill ring stores several recent kills, not |
| 39 | killing is a very safe operation: you don't have to worry much about | 39 | just the last one, so killing is a very safe operation: you don't have |
| 40 | losing text that you previously killed. The kill ring is shared by | 40 | to worry much about losing text that you previously killed. The kill |
| 41 | all buffers, so text that is killed in one buffer can be yanked into | 41 | ring is shared by all buffers, so text that is killed in one buffer |
| 42 | another buffer. | 42 | can be yanked into another buffer. |
| 43 | 43 | ||
| 44 | When you use @kbd{C-/} (@code{undo}) to undo a kill command | 44 | When you use @kbd{C-/} (@code{undo}) to undo a kill command |
| 45 | (@pxref{Undo}), that brings the killed text back into the buffer, but | 45 | (@pxref{Undo}), that brings the killed text back into the buffer, but |