aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/indent.el2
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."
113 (goto-char start) 113 (goto-char start)
114 (or (bolp) (forward-line 1)) 114 (or (bolp) (forward-line 1))
115 (while (< (point) end) 115 (while (< (point) end)
116 (or (and (bolp) (eolp))) 116 (or (and (bolp) (eolp))
117 (funcall indent-line-function)) 117 (funcall indent-line-function))
118 (forward-line 1)) 118 (forward-line 1))
119 (move-marker end nil)))) 119 (move-marker end nil))))