Mercurial > emacs
diff lisp/mail/sendmail.el @ 2633:c703d66d09c2
* sendmail.el (mail-setup): Don't insert "--\n" before the
signature. If they want it, they can put it in their .signature
file.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 03 May 1993 03:40:10 +0000 |
parents | 551af54fb173 |
children | 277a358b5204 |
line wrap: on
line diff
--- a/lisp/mail/sendmail.el Mon May 03 03:38:36 1993 +0000 +++ b/lisp/mail/sendmail.el Mon May 03 03:40:10 1993 +0000 @@ -153,9 +153,7 @@ ;; 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))