]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/mail/rmail.el (rmail-highlighted-headers): Fix :type.
authorGlenn Morris <rgm@gnu.org>
Tue, 28 Apr 2015 23:25:56 +0000 (19:25 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 28 Apr 2015 23:25:56 +0000 (19:25 -0400)
lisp/mail/rmail.el

index bf439ec5891a470ecd819c8c7d7058895c22e634..934b9d80aa281f05cd3013c18e5fffacbd7ee073 100644 (file)
@@ -393,7 +393,7 @@ go to that message and type \\[rmail-toggle-header] twice."
   "Regexp to match Header fields that Rmail should display.
 If nil, display all header fields except those matched by
 `rmail-ignored-headers'."
-  :type '(choice regexp (const :tag "All"))
+  :type '(choice regexp (const :tag "All" nil))
   :group 'rmail-headers)
 
 ;;;###autoload
@@ -407,7 +407,7 @@ If nil, display all header fields except those matched by
 (defcustom rmail-highlighted-headers (purecopy "^From:\\|^Subject:")
   "Regexp to match Header fields that Rmail should normally highlight.
 A value of nil means don't highlight.  Uses the face `rmail-highlight'."
-  :type 'regexp
+  :type '(choice regexp (const :tag "None" nil))
   :group 'rmail-headers)
 
 (defface rmail-highlight