# HG changeset patch # User Glenn Morris # Date 1233561304 0 # Node ID d69ff5f24dfd6832b302ae8a17c880ab02bbfbb6 # Parent 374ac7d3b3acd8736242f2f8e081cff37a51dd4c (rmail-ignored-headers, rmail-displayed-headers) (rmail-retry-ignored-headers, rmail-highlighted-headers): Restore autoloads. diff -r 374ac7d3b3ac -r d69ff5f24dfd lisp/ChangeLog --- a/lisp/ChangeLog Mon Feb 02 07:50:06 2009 +0000 +++ b/lisp/ChangeLog Mon Feb 02 07:55:04 2009 +0000 @@ -1,3 +1,9 @@ +2009-02-02 Glenn Morris + + * mail/rmail.el (rmail-ignored-headers, rmail-displayed-headers) + (rmail-retry-ignored-headers, rmail-highlighted-headers): + Restore autoloads. + 2009-02-02 Stefan Monnier * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB. diff -r 374ac7d3b3ac -r d69ff5f24dfd lisp/mail/rmail.el --- a/lisp/mail/rmail.el Mon Feb 02 07:50:06 2009 +0000 +++ b/lisp/mail/rmail.el Mon Feb 02 07:55:04 2009 +0000 @@ -315,6 +315,7 @@ value is the user's email address and name.) It is useful to set this variable in the site customization file.") +;;;###autoload (defcustom rmail-ignored-headers (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" @@ -359,6 +360,7 @@ :type '(choice (const nil) (regexp)) :group 'rmail-headers) +;;;###autoload (defcustom rmail-displayed-headers nil "Regexp to match Header fields that Rmail should display. If nil, display all header fields except those matched by @@ -366,11 +368,13 @@ :type '(choice regexp (const :tag "All")) :group 'rmail-headers) +;;;###autoload (defcustom rmail-retry-ignored-headers "^x-authentication-warning:" "Headers that should be stripped when retrying a failed message." :type '(choice regexp (const nil :tag "None")) :group 'rmail-headers) +;;;###autoload (defcustom rmail-highlighted-headers "^From:\\|^Subject:" "Regexp to match Header fields that Rmail should normally highlight. A value of nil means don't highlight."