]> git.eshelyaron.com Git - emacs.git/commitdiff
(indent-region): Fix paren error in last change.
authorRichard M. Stallman <rms@gnu.org>
Fri, 6 Aug 1993 22:15:45 +0000 (22:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 6 Aug 1993 22:15:45 +0000 (22:15 +0000)
lisp/indent.el

index 80c8d2d1efdede8006a9e15f98ea072aaea19b5e..adb975973456d99589e59bcfb8b4bdcf863c9efa 100644 (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))))