Changes committed gnus/lisp (ChangeLog mm-decode.el)
"Katsumi Yamaoka" <[email protected]> Mon, 29 Mar 2010 13:19:56 +0200
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag. Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.2077 gnus/lisp/ChangeLog:7.2078 --- ChangeLog:7.2077 Mon Mar 29 12:20:06 2010 +++ ChangeLog Mon Mar 29 13:19:56 2010 @@ -1,3 +1,7 @@ +2010-03-29 Katsumi Yamaoka <[email protected]> + + * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag. + 2010-03-29 Teodor Zlatanov <[email protected]> * auth-source.el (auth-source-pick): Fix for non-secrets specifier. Index: mm-decode.el diff -u gnus/lisp/mm-decode.el:7.75 gnus/lisp/mm-decode.el:7.76 --- mm-decode.el:7.75 Tue Mar 23 09:23:42 2010 +++ mm-decode.el Mon Mar 29 13:19:56 2010 @@ -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.