# HG changeset patch # User Richard M. Stallman # Date 762582229 0 # Node ID 74f4a8947d57657fda4a95c7e3dc68a3ef57b36c # Parent bfe9f873bd64745bc7aaee77ccbbf4c8e3c2f615 (mail-do-fcc): Don't write a newline before the text. diff -r bfe9f873bd64 -r 74f4a8947d57 lisp/mail/sendmail.el --- 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)))