From 9d289ed7c77100035a41cbd21f4254c8a41d2ec7 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 26 Jul 1999 00:29:37 +0000 Subject: [PATCH] (fill-region-as-paragraph): Fix previous change. --- lisp/textmodes/fill.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 020e831bb39..b600cd91031 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -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. -- 2.39.5