mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(indent-region): Doc fix.
This commit is contained in:
parent
7d0ff46626
commit
6528f1ca13
2 changed files with 7 additions and 2 deletions
|
|
@ -285,11 +285,14 @@ A value of nil means really run `indent-according-to-mode' on each line.")
|
|||
|
||||
(defun indent-region (start end column)
|
||||
"Indent each nonblank line in the region.
|
||||
With no argument, indent each line using `indent-according-to-mode',
|
||||
With prefix no argument, indent each line using `indent-according-to-mode',
|
||||
or use `indent-region-function' to do the whole region if that's non-nil.
|
||||
If there is a fill prefix, make each line start with the fill prefix.
|
||||
With argument COLUMN, indent each line to that column.
|
||||
Called from a program, takes three args: START, END and COLUMN."
|
||||
|
||||
When you call this from a program, START and END specify
|
||||
the region to indent, and COLUMN specifies the indentation column.
|
||||
If COLUMN is nil, then indent each line according to the mode."
|
||||
(interactive "r\nP")
|
||||
(if (null column)
|
||||
(if fill-prefix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue