diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/killing.texi | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 7e42d0fcaba..ac8c13ddf1d 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-01-26 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * killing.texi (Deletion): Mention delete-duplicate-lines. | ||
| 4 | |||
| 1 | 2014-01-24 Glenn Morris <rgm@gnu.org> | 5 | 2014-01-24 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * ack.texi (Acknowledgments): No longer mention obsolete xesam.el, | 7 | * ack.texi (Acknowledgments): No longer mention obsolete xesam.el, |
diff --git a/doc/emacs/killing.texi b/doc/emacs/killing.texi index 52adbb85431..1da226971eb 100644 --- a/doc/emacs/killing.texi +++ b/doc/emacs/killing.texi | |||
| @@ -136,6 +136,17 @@ the current line). On a solitary blank line, it deletes that line. | |||
| 136 | previous line, by deleting a newline and all surrounding spaces, usually | 136 | previous line, by deleting a newline and all surrounding spaces, usually |
| 137 | leaving a single space. @xref{Indentation,M-^}. | 137 | leaving a single space. @xref{Indentation,M-^}. |
| 138 | 138 | ||
| 139 | @c Not really sure where to put this... | ||
| 140 | @findex delete-duplicate-lines | ||
| 141 | The command @code{delete-duplicate-lines} searches the region for | ||
| 142 | identical lines, and removes all but one copy of each. Normally it | ||
| 143 | keeps the first instance of each repeated line, but with a @kbd{C-u} | ||
| 144 | prefix argument it keeps the last. With a @kbd{C-u C-u} prefix | ||
| 145 | argument, it only searches for adjacent identical lines. This is a | ||
| 146 | more efficient mode of operation, useful when the lines have already | ||
| 147 | been sorted. With a @kbd{C-u C-u C-u} prefix argument, it retains | ||
| 148 | repeated blank lines. | ||
| 149 | |||
| 139 | @node Killing by Lines | 150 | @node Killing by Lines |
| 140 | @subsection Killing by Lines | 151 | @subsection Killing by Lines |
| 141 | 152 | ||