# HG changeset patch # User Stefan Monnier # Date 1049490156 0 # Node ID 6fe4a9da704fc14a803724a54bffca7bfe6595f1 # Parent d76c627871357e132b6e1da2436224fe3454ca96 (refill-fill-paragraph-at): Don't skip prefix since markers work right. diff -r d76c62787135 -r 6fe4a9da704f lisp/textmodes/refill.el --- a/lisp/textmodes/refill.el Fri Apr 04 21:01:44 2003 +0000 +++ b/lisp/textmodes/refill.el Fri Apr 04 21:02:36 2003 +0000 @@ -145,8 +145,7 @@ (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."