From: Eli Zaretskii Date: Sat, 27 Jan 2024 11:28:32 +0000 (+0200) Subject: ; * lisp/textmodes/refill.el (refill-fill-paragraph-at): Fix typo. X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~2795 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9b3f43fa08b2672a5ef33b872b2c6d1b0e881b88;p=emacs.git ; * lisp/textmodes/refill.el (refill-fill-paragraph-at): Fix typo. --- diff --git a/lisp/textmodes/refill.el b/lisp/textmodes/refill.el index 244c96b60df..63789e887e2 100644 --- a/lisp/textmodes/refill.el +++ b/lisp/textmodes/refill.el @@ -106,7 +106,7 @@ This is used to optimize refilling.") ;; FIXME: forward-paragraph seems to disregard `use-hard-newlines', ;; leading to excessive refilling and wrong choice of fill-prefix. ;; might be a bug in my paragraphs.el. - (fill-forward-paragraph) + (fill-forward-paragraph 1) (skip-syntax-backward "-") (let ((end (point)) (beg (progn (fill-forward-paragraph -1) (point)))