Mercurial > emacs
changeset 6136:74f4a8947d57
(mail-do-fcc): Don't write a newline before the text.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 02 Mar 1994 04:23:49 +0000 |
parents | bfe9f873bd64 |
children | 4c5eab6de8f9 |
files | lisp/mail/sendmail.el |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/sendmail.el Wed Mar 02 04:11:11 1994 +0000 +++ b/lisp/mail/sendmail.el Wed Mar 02 04:23:49 1994 +0000 @@ -547,10 +547,7 @@ (if max (narrow-to-region (point-min) max)))))) ;; Else append to the file directly. (write-region - ;; Include a blank line before if file already exists. - - (if (file-exists-p (car fcc-list)) (point-min) (1+ (point-min))) - (point-max) (car fcc-list) t))) + (1+ (point-min)) (point-max) (car fcc-list) t))) (setq fcc-list (cdr fcc-list)))) (kill-buffer tembuf)))