From 92e0f87a1f6dde70bdc1abf6620588b1dadce265 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sun, 6 Dec 1992 22:42:10 +0000 Subject: [PATCH] * sendmail.el (mail-self-blind, mail-interactive, mail-yank-ignored-headers): Make these defvars, not defconsts. Otherwise, they wipe out the user's customizations when we autoload sendmail.el. --- lisp/mail/sendmail.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index a99cdb4c89..ccc00e952d 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -24,18 +24,18 @@ ;;; Code: ;;;###autoload -(defconst mail-self-blind nil "\ +(defvar mail-self-blind nil "\ Non-nil means insert BCC to self in messages to be sent. This is done when the message is initialized, so you can remove or alter the BCC field to override the default.") ;;;###autoload -(defconst mail-interactive nil "\ +(defvar mail-interactive nil "\ Non-nil means when sending a message wait for and display errors. nil means let mailer mail back a message to report errors.") ;;;###autoload -(defconst mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\ +(defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\ Delete these headers from old message when it's inserted in a reply.") ;; Useful to set in site-init.el -- 2.20.1