]> git.eshelyaron.com Git - emacs.git/commitdiff
(mm-add-meta-html-tag): Fix regexp matching meta tag.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 29 Mar 2010 10:16:37 +0000 (10:16 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 29 Mar 2010 10:16:37 +0000 (10:16 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mm-decode.el

index f2d6714dff4733ad88aeecd21e03878ba2b3f35c..6786dff9b59311f40cff28a756b15fd917efe5f7 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
+
 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
index 8bc659f518459af976f3cb486bd866569c55a9e9..58ba3ec7413bb1a205a083a6fd26c104d1ba3d13 100644 (file)
@@ -1273,7 +1273,7 @@ or replaced."
        (goto-char (point-min))
        (if (re-search-forward "\
 <meta\\s-+http-equiv=[\"']?content-type[\"']?\\s-+content=[\"']\
-text/\\(\\sw+\\)\\(?:\;\\s-*charset=\\(.+?\\)\\)?[\"'][^>]*>" nil t)
+text/\\(\\sw+\\)\\(?:\;\\s-*charset=\\(.+\\)\\)?[\"'][^>]*>" nil t)
            (if (and (match-beginning 2)
                     (string-match "\\`html\\'" (match-string 1)))
                ;; Don't modify existing meta tag.