1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-15 17:00:26 +00:00

(refill-fill-paragraph-at): Don't skip prefix since markers work right.

This commit is contained in:
Stefan Monnier 2003-04-04 21:02:36 +00:00
parent 79c117c0cd
commit 7d025c5562

View File

@ -145,8 +145,7 @@ This is used to optimize refilling.")
(if use-hard-newlines (if use-hard-newlines
(fill-region beg end arg) (fill-region beg end arg)
(fill-region-as-paragraph beg end arg)))) (fill-region-as-paragraph beg end arg))))
(move-overlay refill-ignorable-overlay beg (point))))) (move-overlay refill-ignorable-overlay beg (point)))))))
(skip-line-prefix fill-pfx)))
(defun refill-fill-paragraph (arg) (defun refill-fill-paragraph (arg)
"Like `fill-paragraph' but don't delete whitespace at paragraph end." "Like `fill-paragraph' but don't delete whitespace at paragraph end."