aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-04-28 19:25:56 -0400
committerGlenn Morris2015-04-28 19:25:56 -0400
commit6c5765e2328dfd59b2b62caf777dcee3e09938a2 (patch)
tree1fc1a2410022cd0281cae6a8529659469f5bb08a
parent301514f2bfd49ce1c01724dcbbcded2c2736f858 (diff)
downloademacs-6c5765e2328dfd59b2b62caf777dcee3e09938a2.tar.gz
emacs-6c5765e2328dfd59b2b62caf777dcee3e09938a2.zip
* lisp/mail/rmail.el (rmail-highlighted-headers): Fix :type.
-rw-r--r--lisp/mail/rmail.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index bf439ec5891..934b9d80aa2 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."
393 "Regexp to match Header fields that Rmail should display. 393 "Regexp to match Header fields that Rmail should display.
394If nil, display all header fields except those matched by 394If nil, display all header fields except those matched by
395`rmail-ignored-headers'." 395`rmail-ignored-headers'."
396 :type '(choice regexp (const :tag "All")) 396 :type '(choice regexp (const :tag "All" nil))
397 :group 'rmail-headers) 397 :group 'rmail-headers)
398 398
399;;;###autoload 399;;;###autoload
@@ -407,7 +407,7 @@ If nil, display all header fields except those matched by
407(defcustom rmail-highlighted-headers (purecopy "^From:\\|^Subject:") 407(defcustom rmail-highlighted-headers (purecopy "^From:\\|^Subject:")
408 "Regexp to match Header fields that Rmail should normally highlight. 408 "Regexp to match Header fields that Rmail should normally highlight.
409A value of nil means don't highlight. Uses the face `rmail-highlight'." 409A value of nil means don't highlight. Uses the face `rmail-highlight'."
410 :type 'regexp 410 :type '(choice regexp (const :tag "None" nil))
411 :group 'rmail-headers) 411 :group 'rmail-headers)
412 412
413(defface rmail-highlight 413(defface rmail-highlight