+2008-02-10 Bastien Guerry <bzg@altern.org>
+
+ * mail/rmail.el (rmail-nonignored-headers): Allow to be nil.
+ (rmail-clear-headers): Don't check `rmail-nonignored-headers' when
+ it is nil.
+
2008-02-10 Daiki Ueno <ueno@unixuser.org>
* epg-config.el: Expand the contents of epg-package-info.el.
"*Regexp to match X header fields that Rmail should show.
This regexp overrides `rmail-ignored-headers'; if both this regexp
and that one match a certain header field, Rmail shows the field.
+If this is nil, ignore all header fields in `rmail-ignored-headers'.
This variable is used for reformatting the message header,
which normally happens once for each message,
To make a change in this variable take effect
for a message that you have already viewed,
go to that message and type \\[rmail-toggle-header] twice."
- :type 'regexp
+ :type '(choice (const nil) (regexp))
:group 'rmail-headers)
;;;###autoload
(while (and ignored-headers
(re-search-forward ignored-headers nil t))
(beginning-of-line)
- (if (looking-at rmail-nonignored-headers)
+ (if (and rmail-nonignored-headers
+ (looking-at rmail-nonignored-headers))
(forward-line 1)
(delete-region (point)
(save-excursion