aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/fill.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 5a39ba4d8b1..af491603fc8 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -660,9 +660,9 @@ space does not end a sentence, so don't break a line there."
660 (progn 660 (progn
661 (delete-horizontal-space) 661 (delete-horizontal-space)
662 (justify-current-line justify t t)) 662 (justify-current-line justify t t))
663 (forward-line -1) 663 (save-excursion
664 (justify-current-line justify nil t) 664 (forward-line -1)
665 (forward-line 1)))))) 665 (justify-current-line justify nil t)))))))
666 ;; Leave point after final newline. 666 ;; Leave point after final newline.
667 (goto-char to)) 667 (goto-char to))
668 (unless (eobp) 668 (unless (eobp)