Mercurial > emacs
changeset 25061:2fef5f679d68
(fill-region-as-paragraph): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 26 Jul 1999 00:29:37 +0000 |
parents | 82d83822ab69 |
children | 050561b336aa |
files | lisp/textmodes/fill.el |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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.