1
Fork 0
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:
Richard M. Stallman 1993-08-06 22:15:45 +00:00
parent c4fc9e31aa
commit 232acca722

View file

@ -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))))