From: Richard M. Stallman Date: Sat, 24 Jul 2004 21:35:32 +0000 (+0000) Subject: (rmail-mime-charset-pattern): Don't include semicolon in the charset value. X-Git-Tag: ttn-vms-21-2-B4~5407 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ae1a6952defdd7e3bab25d2ce6be80e6c4bff315;p=emacs.git (rmail-mime-charset-pattern): Don't include semicolon in the charset value. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index bdf04be519a..f8e31dfda04 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -484,7 +484,7 @@ the variable `rmail-mime-feature'.") ;;;###autoload (defvar rmail-mime-charset-pattern - "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\"]+\\)\"?" + "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?" "Regexp to match MIME-charset specification in a header of message. The first parenthesized expression should match the MIME-charset name.")