aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-06 22:15:45 +0000
committerRichard M. Stallman1993-08-06 22:15:45 +0000
commit232acca722a4e8022a6864a23166cba2cd5dac8f (patch)
tree9117b35837581d8a535b79f3d3bdae62e2e4525f
parentc4fc9e31aad1b021d6b5e702252139be32ce5afd (diff)
downloademacs-232acca722a4e8022a6864a23166cba2cd5dac8f.tar.gz
emacs-232acca722a4e8022a6864a23166cba2cd5dac8f.zip
(indent-region): Fix paren error in last change.
-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))))