* lisp/textmodes/pixel-fill.el (pixel-fill--fill-line): Don't add
a newline (and continuation) if we're at the end of the line.
;; Success; continue.
(when (= (preceding-char) ?\s)
(delete-char -1))
- (insert ?\n)
- (when (> indentation 0)
- (insert (propertize " " 'display
- (list 'space :align-to (list indentation)))))
+ (unless (eobp)
+ (insert ?\n)
+ (when (> indentation 0)
+ (insert (propertize " " 'display
+ (list 'space :align-to (list indentation))))))
(setq start (point))
(pixel-fill--goto-pixel width))))