diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mail/mailalias.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mail/mailalias.el b/lisp/mail/mailalias.el index f4f5df17bba..5916329f68a 100644 --- a/lisp/mail/mailalias.el +++ b/lisp/mail/mailalias.el | |||
| @@ -56,7 +56,10 @@ When t this still needs to be initialized.") | |||
| 56 | (defcustom mail-complete-alist | 56 | (defcustom mail-complete-alist |
| 57 | ;; Don't use backquote here; we don't want backquote to get loaded | 57 | ;; Don't use backquote here; we don't want backquote to get loaded |
| 58 | ;; just because of loading this file. | 58 | ;; just because of loading this file. |
| 59 | (cons (cons mail-address-field-regexp '(mail-get-names pattern)) | 59 | ;; Don't refer to mail-address-field-regexp here; |
| 60 | ;; that confuses some things such as cus-dep.el. | ||
| 61 | (cons '("^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):" | ||
| 62 | . (mail-get-names pattern)) | ||
| 60 | '(("Newsgroups:" . (if (boundp 'gnus-active-hashtb) | 63 | '(("Newsgroups:" . (if (boundp 'gnus-active-hashtb) |
| 61 | gnus-active-hashtb | 64 | gnus-active-hashtb |
| 62 | (if (boundp news-group-article-assoc) | 65 | (if (boundp news-group-article-assoc) |