1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +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
(fill-region beg end arg)
(fill-region-as-paragraph beg end arg))))
(move-overlay refill-ignorable-overlay beg (point)))))
(skip-line-prefix fill-pfx)))
(move-overlay refill-ignorable-overlay beg (point)))))))
(defun refill-fill-paragraph (arg)
"Like `fill-paragraph' but don't delete whitespace at paragraph end."