]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-signature): Insert a `-- ' line.
authorRichard M. Stallman <rms@gnu.org>
Tue, 8 Feb 1994 17:51:57 +0000 (17:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 8 Feb 1994 17:51:57 +0000 (17:51 +0000)
lisp/mail/sendmail.el

index ed223976507b233a53933dd8b2b51871598d2321..4325ce4950f1fc5371778e67307d97ac48b8bd6a 100644 (file)
@@ -643,7 +643,7 @@ the user from the mailer."
   (search-forward (concat "\n" mail-header-separator "\n")))
 \f
 (defun mail-signature (atpoint)
-  "Sign letter with contents of `mail-signature-file'.
+  "Sign letter with contents of the file `~/.signature'.
 Prefix arg means put contents at point."
   (interactive "P")
   (save-excursion
@@ -653,7 +653,7 @@ Prefix arg means put contents at point."
     (end-of-line)
     (or atpoint
        (delete-region (point) (point-max)))
-    (insert "\n\n")
+    (insert "\n\n-- \n")
     (insert-file-contents (expand-file-name "~/.signature"))))
 
 (defun mail-fill-yanked-message (&optional justifyp)