# HG changeset patch # User Richard M. Stallman # Date 773981247 0 # Node ID 1f1387385ac6bce3abfe281bf00d9c93648eea1e # Parent 767bef8ec35bad361364ecfa7f8a0700e2eb2411 (mail-setup): Insert -- line before .signature file. diff -r 767bef8ec35b -r 1f1387385ac6 lisp/mail/sendmail.el --- a/lisp/mail/sendmail.el Tue Jul 12 02:16:57 1994 +0000 +++ b/lisp/mail/sendmail.el Tue Jul 12 02:47:27 1994 +0000 @@ -198,7 +198,9 @@ (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))