# HG changeset patch # User Kenichi Handa # Date 932948977 0 # Node ID 2fef5f679d684b6c5ac90bf560374cf1cff41214 # Parent 82d83822ab69af0d3873ae9e8e13f43e4c318aa7 (fill-region-as-paragraph): Fix previous change. diff -r 82d83822ab69 -r 2fef5f679d68 lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Mon Jul 26 00:14:37 1999 +0000 +++ b/lisp/textmodes/fill.el Mon Jul 26 00:29:37 1999 +0000 @@ -546,10 +546,9 @@ ;; 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.