aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/fill.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el
index 5609eef944d..a7431356fda 100644
--- a/lisp/textmodes/fill.el
+++ b/lisp/textmodes/fill.el
@@ -513,8 +513,10 @@ space does not end a sentence, so don't break a line there."
513 (setq prefixcol (current-column)))))) 513 (setq prefixcol (current-column))))))
514 ;; Justify the line just ended, if desired. 514 ;; Justify the line just ended, if desired.
515 (if justify 515 (if justify
516 (if (eobp) 516 (if (save-excursion (skip-chars-forward " \t") (eobp))
517 (justify-current-line justify t t) 517 (progn
518 (delete-horizontal-space)
519 (justify-current-line justify t t))
518 (forward-line -1) 520 (forward-line -1)
519 (justify-current-line justify nil t) 521 (justify-current-line justify nil t)
520 (forward-line 1)))))) 522 (forward-line 1))))))