]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-ignored-headers, rmail-displayed-headers)
authorGlenn Morris <rgm@gnu.org>
Mon, 2 Feb 2009 07:55:04 +0000 (07:55 +0000)
committerGlenn Morris <rgm@gnu.org>
Mon, 2 Feb 2009 07:55:04 +0000 (07:55 +0000)
(rmail-retry-ignored-headers, rmail-highlighted-headers):
Restore autoloads.

lisp/ChangeLog
lisp/mail/rmail.el

index cf75fb1af238e9ece2def4f30566028f22c8cf06..545cd8f9ab96d553b4cc0936719f9ffc802dbd6a 100644 (file)
@@ -1,3 +1,9 @@
+2009-02-02  Glenn Morris  <rgm@gnu.org>
+
+       * mail/rmail.el (rmail-ignored-headers, rmail-displayed-headers)
+       (rmail-retry-ignored-headers, rmail-highlighted-headers):
+       Restore autoloads.
+
 2009-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB.
index 3966c0edac34f71d4d0f092a7146de5eda71df3e..cd7a8895afafeb09345176473f55bebefb40abf9 100644 (file)
@@ -315,6 +315,7 @@ variable `rmail-dont-reply-to-names', for when the user does not set
 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 @@ go to that message and type \\[rmail-toggle-header] twice."
   :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 @@ If nil, display all header fields except those matched by
   :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."