emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99765: (mm-add-meta-html-tag): Fix r


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99765: (mm-add-meta-html-tag): Fix regexp matching meta tag.
Date: Mon, 29 Mar 2010 10:19:03 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99765 [merge]
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Mon 2010-03-29 10:19:03 +0000
message:
  (mm-add-meta-html-tag): Fix regexp matching meta tag.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/mm-decode.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-03-29 09:28:20 +0000
+++ b/lisp/gnus/ChangeLog       2010-03-29 10:16:37 +0000
@@ -1,3 +1,7 @@
+2010-03-29  Katsumi Yamaoka  <address@hidden>
+
+       * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
+
 2010-03-29  Teodor Zlatanov  <address@hidden>
 
        * auth-source.el (auth-source-pick): Fix for non-secrets specifier.

=== modified file 'lisp/gnus/mm-decode.el'
--- a/lisp/gnus/mm-decode.el    2010-03-19 02:55:37 +0000
+++ b/lisp/gnus/mm-decode.el    2010-03-29 10:16:37 +0000
@@ -1273,7 +1273,7 @@
        (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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]