diff options
| author | Ćukasz Stelmach | 2019-03-15 22:06:16 +0100 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-22 11:47:36 +0300 |
| commit | 8fa94a1ecc18a41ca2738f438b3fbc817c9fdc82 (patch) | |
| tree | 8b95453244ce2e7a65e252aa8140786bb8bce140 /doc | |
| parent | 09d746dad36e4780d379f975a84b1b076da78c50 (diff) | |
| download | emacs-8fa94a1ecc18a41ca2738f438b3fbc817c9fdc82.tar.gz emacs-8fa94a1ecc18a41ca2738f438b3fbc817c9fdc82.zip | |
If the region is active, join all the lines it spans
* lisp/simple.el (delete-indentation): Join lines in the active region.
(Bug#34796)
* doc/misc/org.texi: Describe the arguments of delete-indentation.
* etc/NEWS: Mention region support in delete-indentation.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/indent.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/emacs/indent.texi b/doc/emacs/indent.texi index a6aa75bbb42..61cf7332b5c 100644 --- a/doc/emacs/indent.texi +++ b/doc/emacs/indent.texi | |||
| @@ -110,6 +110,10 @@ parentheses, or if the junction follows another newline. | |||
| 110 | If there is a fill prefix, @kbd{M-^} deletes the fill prefix if it | 110 | If there is a fill prefix, @kbd{M-^} deletes the fill prefix if it |
| 111 | appears after the newline that is deleted. @xref{Fill Prefix}. | 111 | appears after the newline that is deleted. @xref{Fill Prefix}. |
| 112 | 112 | ||
| 113 | With the universal prefix argument, join the current line line to the | ||
| 114 | following line. With the region active, join lines in the region. If | ||
| 115 | both the argument is set and the region is active, the region is ignored. | ||
| 116 | |||
| 113 | @item C-M-\ | 117 | @item C-M-\ |
| 114 | @kindex C-M-\ | 118 | @kindex C-M-\ |
| 115 | @findex indent-region | 119 | @findex indent-region |