diff options
author | Eli Zaretskii <eliz@gnu.org> | 2018-01-19 21:18:03 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2018-01-19 21:18:03 +0200 |
commit | 7f48a11216fc12f1aef8158f82e5a0a0706f51af (patch) | |
tree | 6de39613d1682b964143ffd95352703025792945 /doc/emacs/killing.texi | |
parent | 728ded05f617d48f4a693713d72af872395ebd55 (diff) | |
download | emacs-7f48a11216fc12f1aef8158f82e5a0a0706f51af.tar.gz emacs-7f48a11216fc12f1aef8158f82e5a0a0706f51af.tar.bz2 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.
Diffstat (limited to 'doc/emacs/killing.texi')
-rw-r--r-- | doc/emacs/killing.texi | 14 |
1 files changed, 7 insertions, 7 deletions
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. @cindex cutting text @cindex deletion Most commands which erase text from the buffer save it in the kill -ring. These are known as @dfn{kill} commands, and their names -normally contain the word @samp{kill} (e.g., @code{kill-line}). The -kill ring stores several recent kills, not just the last one, so -killing is a very safe operation: you don't have to worry much about -losing text that you previously killed. The kill ring is shared by -all buffers, so text that is killed in one buffer can be yanked into -another buffer. +ring (@pxref{Kill Ring}). These are known as @dfn{kill} commands, and +their names normally contain the word @samp{kill} (e.g., +@code{kill-line}). The kill ring stores several recent kills, not +just the last one, so killing is a very safe operation: you don't have +to worry much about losing text that you previously killed. The kill +ring is shared by all buffers, so text that is killed in one buffer +can be yanked into another buffer. When you use @kbd{C-/} (@code{undo}) to undo a kill command (@pxref{Undo}), that brings the killed text back into the buffer, but |