From: Lars Ingebrigtsen Date: Wed, 24 Mar 2021 09:23:07 +0000 (+0100) Subject: Fix problem with filling with a computed fill prefix X-Git-Tag: emacs-28.0.90~3159 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8d334132456dfcbe5b5c3e59737dbfd0a4ea4c0d;p=emacs.git Fix problem with filling with a computed fill prefix * lisp/textmodes/fill.el (fill-region-as-paragraph): Fix problem when filling text with a computed fill prefix (bug#47338). --- diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index 81cd2f02cd7..cb5027a9763 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -703,7 +703,8 @@ space does not end a sentence, so don't break a line there." (or justify (setq justify (current-justification))) ;; Don't let Adaptive Fill mode alter the fill prefix permanently. - (let ((fill-prefix fill-prefix)) + (let ((actual-fill-prefix fill-prefix) + (fill-prefix fill-prefix)) ;; Figure out how this paragraph is indented, if desired. (when (and adaptive-fill-mode (or (null fill-prefix) (string= fill-prefix ""))) @@ -717,7 +718,7 @@ space does not end a sentence, so don't break a line there." (goto-char from) (beginning-of-line) - (if (not justify) ; filling disabled: just check indentation + (if (not justify) ; filling disabled: just check indentation (progn (goto-char from) (while (< (point) to) @@ -747,12 +748,14 @@ space does not end a sentence, so don't break a line there." linebeg) (while (< (point) to) ;; On the first line, there may be text in the fill prefix - ;; zone. In that case, don't consider that area when - ;; trying to find a place to put a line break (bug#45720). + ;; zone (when `fill-prefix' is specified externally, and + ;; not computed). In that case, don't consider that area + ;; when trying to find a place to put a line break + ;; (bug#45720). (if (not first) (setq linebeg (point)) (setq first nil - linebeg (+ (point) (length fill-prefix)))) + linebeg (+ (point) (length actual-fill-prefix)))) (move-to-column (current-fill-column)) (if (when (< (point) to) ;; Find the position where we'll break the line.