]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-default-reply-to): Initialize to nil.
authorRichard M. Stallman <rms@gnu.org>
Sun, 2 Jul 1995 07:26:01 +0000 (07:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 2 Jul 1995 07:26:01 +0000 (07:26 +0000)
(mail-setup): Override it from env var if nil.

lisp/mail/sendmail.el

index f54b52cb4b5008c06c889a271d6e29f7a2a33ffe..437f3b8c2b4133ad44528f0e6599c6ee367993ec 100644 (file)
@@ -71,7 +71,7 @@ match the variable `mail-header-separator'.")
 This can be an inbox file or an Rmail file.")
 
 ;;;###autoload
-(defvar mail-default-reply-to t
+(defvar mail-default-reply-to nil
   "*Address to insert as default Reply-to field of outgoing messages.")
 
 ;;;###autoload
@@ -210,7 +210,7 @@ actually occur.")
              mail-aliases t))))
 
 (defun mail-setup (to subject in-reply-to cc replybuffer actions)
-  (if (eq mail-default-reply-to t)
+  (or mail-default-reply-to
       (setq mail-default-reply-to (getenv "REPLYTO")))
   (sendmail-synch-aliases)
   (if (eq mail-aliases t)