]> git.eshelyaron.com Git - emacs.git/commitdiff
Make fill-region-as-paragraph clear the markers it creates
authorIkumi Keita <ikumi@ikumi.que.jp>
Mon, 29 Nov 2021 14:40:19 +0000 (15:40 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 29 Nov 2021 14:40:19 +0000 (15:40 +0100)
* lisp/textmodes/fill.el (fill-region-as-paragraph): Clear
temporary markers (bug#52175).

Copyright-paperwork-exempt: yes

lisp/textmodes/fill.el

index 73d76a8ac677b641119259de0eb168bb15fd5ca9..4e161099cd6f442af68ac6f655d4a5f0f768ee59 100644 (file)
@@ -705,7 +705,10 @@ space does not end a sentence, so don't break a line there."
     (goto-char from-plus-indent))
 
   (if (not (> to (point)))
-      nil ;; There is no paragraph, only whitespace: exit now.
+      ;; There is no paragraph, only whitespace: exit now.
+      (progn
+        (set-marker to nil)
+        nil)
 
     (or justify (setq justify (current-justification)))
 
@@ -791,6 +794,7 @@ space does not end a sentence, so don't break a line there."
       ;; Leave point after final newline.
       (goto-char to)
       (unless (eobp) (forward-char 1))
+      (set-marker to nil)
       ;; Return the fill-prefix we used
       fill-prefix)))