From: Richard M. Stallman Date: Fri, 6 Aug 1993 22:15:45 +0000 (+0000) Subject: (indent-region): Fix paren error in last change. X-Git-Tag: emacs-19.34~11378 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=232acca722a4e8022a6864a23166cba2cd5dac8f;p=emacs.git (indent-region): Fix paren error in last change. --- 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))))