changeset 50440:6fe4a9da704f

(refill-fill-paragraph-at): Don't skip prefix since markers work right.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 04 Apr 2003 21:02:36 +0000
parents d76c62787135
children 37738feb0204
files lisp/textmodes/refill.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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."