Changeset 4091 for trunk/lisp/mail/rmail.el
- Timestamp:
- 05/27/06 10:35:24 (2 years ago)
- Files:
-
- trunk/lisp/mail/rmail.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/mail/rmail.el
r4073 r4091 625 625 (defvar rmail-mime-charset-pattern 626 626 (concat "^content-type:[ ]*text/plain;" 627 "\\(?:[ \t\n]*\\( format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*"627 "\\(?:[ \t\n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*" 628 628 "[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?") 629 629 "Regexp to match MIME-charset specification in a header of message. … … 1995 1995 rmail-mime-charset-pattern 1996 1996 start t)))) 1997 (intern (downcase (match-string 2))))))1997 (intern (downcase (match-string 1)))))) 1998 1998 (rmail-decode-region start (point) mime-charset))))) 1999 1999 ;; Add an X-Coding-System: header if we don't have one. … … 2156 2156 rmail-mime-charset-pattern 2157 2157 start t)))) 2158 (intern (downcase (match-string 2))))))2158 (intern (downcase (match-string 1)))))) 2159 2159 (rmail-decode-region start (point) mime-charset))) 2160 2160 (save-excursion
