# HG changeset patch # User Jim Blandy # Date 736400410 0 # Node ID c703d66d09c299f6f7af657cb6ca3304da9d9774 # Parent f63bcaae7cd0d4426f4b7acbc9c8207719de8ece * sendmail.el (mail-setup): Don't insert "--\n" before the signature. If they want it, they can put it in their .signature file. diff -r f63bcaae7cd0 -r c703d66d09c2 lisp/mail/sendmail.el --- 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))