(fill-region-as-paragraph): Fix previous change.

This commit is contained in:
Karl Heuer 1999-07-27 20:06:20 +00:00
parent 071ebee939
commit e7029763ca

View file

@ -546,9 +546,13 @@ 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)
(length fill-prefix))))))
;; Make sure we take SOMETHING after the
;; fill prefix if any.
(fill-find-break-point
(save-excursion
(goto-char linebeg)
(move-to-column prefixcol)
(point))))))
;; If the left margin and fill prefix by themselves
;; pass the fill-column, keep at least one word.