diff options
| author | Jim Blandy | 1992-12-06 22:42:10 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-12-06 22:42:10 +0000 |
| commit | 92e0f87a1f6dde70bdc1abf6620588b1dadce265 (patch) | |
| tree | 4398150653685438aae4f492ec460b135c149f16 /lisp | |
| parent | 84df0b376f8f24b48bcc39d06a216746b6fbc2a1 (diff) | |
| download | emacs-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.el | 6 |
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 "\ |
| 28 | Non-nil means insert BCC to self in messages to be sent. | 28 | Non-nil means insert BCC to self in messages to be sent. |
| 29 | This is done when the message is initialized, | 29 | This is done when the message is initialized, |
| 30 | so you can remove or alter the BCC field to override the default.") | 30 | so 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 "\ |
| 34 | Non-nil means when sending a message wait for and display errors. | 34 | Non-nil means when sending a message wait for and display errors. |
| 35 | nil means let mailer mail back a message to report errors.") | 35 | nil 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:" "\ |
| 39 | Delete these headers from old message when it's inserted in a reply.") | 39 | Delete 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 |