aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-01-19 21:18:03 +0200
committerEli Zaretskii2018-01-19 21:18:03 +0200
commit7f48a11216fc12f1aef8158f82e5a0a0706f51af (patch)
tree6de39613d1682b964143ffd95352703025792945
parent728ded05f617d48f4a693713d72af872395ebd55 (diff)
downloademacs-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.texi16
-rw-r--r--doc/emacs/killing.texi14
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
464forward to the next hyperlink, while @kbd{S-@key{TAB}} 464forward 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.
466commands act cyclically; for instance, typing @key{TAB} at the last 466These commands act cyclically; for instance, typing @key{TAB} at the
467hyperlink moves back to the first hyperlink. 467last 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
470to there and type @kbd{C-c C-c} (@code{help-follow-symbol}). This 470to the symbol and type @kbd{C-c C-c} (@code{help-follow-symbol}).
471shows all available documentation about the symbol---as a variable, 471This shows all available documentation about the symbol---as a
472function and/or face. 472variable, 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}).
495package (@pxref{Packages}, and displays a help buffer describing the 495package (@pxref{Packages}, and displays a help buffer describing the
496attributes of the package and the features that it implements. The 496attributes of the package and the features that it implements. The
497buffer lists the keywords that relate to the package in the form of 497buffer lists the keywords that relate to the package in the form of
498buttons. Click on a button to see other packages related to that 498buttons. Click on a button with @kbd{mouse-1} or @kbd{mouse-2} to see
499keyword. 499the 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
36ring. These are known as @dfn{kill} commands, and their names 36ring (@pxref{Kill Ring}). These are known as @dfn{kill} commands, and
37normally contain the word @samp{kill} (e.g., @code{kill-line}). The 37their names normally contain the word @samp{kill} (e.g.,
38kill ring stores several recent kills, not just the last one, so 38@code{kill-line}). The kill ring stores several recent kills, not
39killing is a very safe operation: you don't have to worry much about 39just the last one, so killing is a very safe operation: you don't have
40losing text that you previously killed. The kill ring is shared by 40to worry much about losing text that you previously killed. The kill
41all buffers, so text that is killed in one buffer can be yanked into 41ring is shared by all buffers, so text that is killed in one buffer
42another buffer. 42can 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