changeset 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 f63bcaae7cd0
children 9d0a5f376195
files lisp/mail/sendmail.el
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
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))