diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-10-21 18:08:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-10-21 18:08:17 +0000 |
commit | b054090e748f2d1d04d6769285dafa7b46abd375 (patch) | |
tree | 4973ee071e8b182be2a0d3ccf2212f3ef55f8004 /lisp/mail | |
parent | 98a663f11e89643b456f1f31acc9cd615a49efad (diff) | |
download | emacs-b054090e748f2d1d04d6769285dafa7b46abd375.tar.gz |
(rmail-output): Insert newline only if necessary.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/rmailout.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el index 7ced9999e55..a029f5e192a 100644 --- a/lisp/mail/rmailout.el +++ b/lisp/mail/rmailout.el @@ -295,7 +295,7 @@ The optional fourth argument FROM-GNUS is set when called from GNUS." (erase-buffer) (insert-buffer-substring rmailbuf) (rmail-delete-unwanted-fields t) - (insert "\n") + (or (bolp) (insert "\n")) (goto-char (point-min)) (if mail-from (insert mail-from "\n") |