1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(mail-do-fcc): Don't write a newline before the text.

This commit is contained in:
Richard M. Stallman 1994-03-02 04:23:49 +00:00
parent b7c49376aa
commit fdc1827fdb

View file

@ -547,10 +547,7 @@ the user from the mailer."
(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)))