comparison lisp/mail/rmail.el @ 73281:f3db6404bec1

(rmail-mime-charset-pattern): Allow a TAB between "Content-Type" and "text/plain".
author Eli Zaretskii <eliz@gnu.org>
date Sat, 07 Oct 2006 13:29:51 +0000
parents fb0e9cf9f77b
children e1c32a83bd29 8dd8c8286063
comparison
equal deleted inserted replaced
73280:131aaf8fbc41 73281:f3db6404bec1
621 ignored, and all the decoding work is done by a feature specified by 621 ignored, and all the decoding work is done by a feature specified by
622 the variable `rmail-mime-feature'.") 622 the variable `rmail-mime-feature'.")
623 623
624 ;;;###autoload 624 ;;;###autoload
625 (defvar rmail-mime-charset-pattern 625 (defvar rmail-mime-charset-pattern
626 (concat "^content-type:[ ]*text/plain;" 626 (concat "^content-type:[ \t]*text/plain;"
627 "\\(?:[ \t\n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*" 627 "\\(?:[ \t\n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*"
628 "[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?") 628 "[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?")
629 "Regexp to match MIME-charset specification in a header of message. 629 "Regexp to match MIME-charset specification in a header of message.
630 The first parenthesized expression should match the MIME-charset name.") 630 The first parenthesized expression should match the MIME-charset name.")
631 631