mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(indent-region): Fix paren error in last change.
This commit is contained in:
parent
c4fc9e31aa
commit
232acca722
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ Called from a program, takes three args: START, END and COLUMN."
|
|||
(goto-char start)
|
||||
(or (bolp) (forward-line 1))
|
||||
(while (< (point) end)
|
||||
(or (and (bolp) (eolp)))
|
||||
(or (and (bolp) (eolp))
|
||||
(funcall indent-line-function))
|
||||
(forward-line 1))
|
||||
(move-marker end nil))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue