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

(mail-setup): Insert -- line before .signature file.

This commit is contained in:
Richard M. Stallman 1994-07-12 02:47:27 +00:00
parent 8eb6c7da6b
commit a5282b8fe2

View file

@ -198,7 +198,9 @@ actually occur.")
(if to (setq to (point)))
(cond ((eq mail-signature t)
(if (file-exists-p "~/.signature")
(insert-file-contents "~/.signature")))
(progn
(insert "\n\n-- \n")
(insert-file-contents "~/.signature"))))
(mail-signature
(insert mail-signature)))
(goto-char (point-max))