]> git.eshelyaron.com Git - emacs.git/commitdiff
(fill-region-as-paragraph): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Mon, 26 Jul 1999 00:29:37 +0000 (00:29 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 26 Jul 1999 00:29:37 +0000 (00:29 +0000)
lisp/textmodes/fill.el

index 020e831bb39096dca74e5750001fba88e23d23c6..b600cd910310c53744a053a8bd9b5bde5880da38 100644 (file)
@@ -546,10 +546,9 @@ space does not end a sentence, so don't break a line there."
                      ;; character to find the correct break point.
                      (if (not (and (eq (charset-after (1- (point))) 'ascii)
                                    (eq (charset-after (point)) 'ascii)))
-                         (fill-find-break-point
-                          (+ linebeg
-                             (current-left-margin)
-                             (if fill-prefix (length fill-prefix) 0))))))
+                         (fill-find-break-point (+ linebeg
+                                                   (current-left-margin)
+                                                   (length fill-prefix))))))
 
                ;; If the left margin and fill prefix by themselves
                ;; pass the fill-column, keep at least one word.