aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-07-24 21:35:32 +0000
committerRichard M. Stallman2004-07-24 21:35:32 +0000
commitae1a6952defdd7e3bab25d2ce6be80e6c4bff315 (patch)
tree7f731abe50a7a3307b0d8b933d26acdac7ae4c60
parentf22a74063c8024ab3012b511b668392ebef6995f (diff)
downloademacs-ae1a6952defdd7e3bab25d2ce6be80e6c4bff315.tar.gz
emacs-ae1a6952defdd7e3bab25d2ce6be80e6c4bff315.zip
(rmail-mime-charset-pattern): Don't include semicolon in the charset value.
-rw-r--r--lisp/mail/rmail.el2
1 files changed, 1 insertions, 1 deletions
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'.")
484 484
485;;;###autoload 485;;;###autoload
486(defvar rmail-mime-charset-pattern 486(defvar rmail-mime-charset-pattern
487 "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\"]+\\)\"?" 487 "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?"
488 "Regexp to match MIME-charset specification in a header of message. 488 "Regexp to match MIME-charset specification in a header of message.
489The first parenthesized expression should match the MIME-charset name.") 489The first parenthesized expression should match the MIME-charset name.")
490 490