emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 6c5765e: * lisp/mail/rmail.el (rmail-highlighted-he


From: Glenn Morris
Subject: [Emacs-diffs] master 6c5765e: * lisp/mail/rmail.el (rmail-highlighted-headers): Fix :type.
Date: Tue, 28 Apr 2015 23:26:00 +0000

branch: master
commit 6c5765e2328dfd59b2b62caf777dcee3e09938a2
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/mail/rmail.el (rmail-highlighted-headers): Fix :type.
---
 lisp/mail/rmail.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index bf439ec..934b9d8 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]