1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

* sendmail.el (mail-setup): Don't insert "--\n" before the

signature.  If they want it, they can put it in their .signature
	file.
This commit is contained in:
Jim Blandy 1993-05-03 03:40:10 +00:00
parent 1a786d291b
commit 684602b92e

View file

@ -153,9 +153,7 @@ so you can edit or delete these lines.")
;; Insert the signature.
(cond ((eq mail-signature t)
(if (file-exists-p "~/.signature")
(progn
(insert "--\n")
(insert-file-contents "~/.signature"))))
(insert-file-contents "~/.signature")))
(mail-signature
(insert mail-signature)))
(goto-char (point-max))