aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJim Blandy1992-12-06 22:42:10 +0000
committerJim Blandy1992-12-06 22:42:10 +0000
commit92e0f87a1f6dde70bdc1abf6620588b1dadce265 (patch)
tree4398150653685438aae4f492ec460b135c149f16 /lisp
parent84df0b376f8f24b48bcc39d06a216746b6fbc2a1 (diff)
downloademacs-92e0f87a1f6dde70bdc1abf6620588b1dadce265.tar.gz
emacs-92e0f87a1f6dde70bdc1abf6620588b1dadce265.zip
* 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.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/sendmail.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index a99cdb4c898..ccc00e952da 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -24,18 +24,18 @@
24;;; Code: 24;;; Code:
25 25
26;;;###autoload 26;;;###autoload
27(defconst mail-self-blind nil "\ 27(defvar mail-self-blind nil "\
28Non-nil means insert BCC to self in messages to be sent. 28Non-nil means insert BCC to self in messages to be sent.
29This is done when the message is initialized, 29This is done when the message is initialized,
30so you can remove or alter the BCC field to override the default.") 30so you can remove or alter the BCC field to override the default.")
31 31
32;;;###autoload 32;;;###autoload
33(defconst mail-interactive nil "\ 33(defvar mail-interactive nil "\
34Non-nil means when sending a message wait for and display errors. 34Non-nil means when sending a message wait for and display errors.
35nil means let mailer mail back a message to report errors.") 35nil means let mailer mail back a message to report errors.")
36 36
37;;;###autoload 37;;;###autoload
38(defconst mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\ 38(defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
39Delete these headers from old message when it's inserted in a reply.") 39Delete these headers from old message when it's inserted in a reply.")
40 40
41;; Useful to set in site-init.el 41;; Useful to set in site-init.el