diff options
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index 80c8d2d1efd..adb97597345 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -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)))) |