Synch to No Gnus 200412281349.
authoryamaoka <yamaoka>
Tue, 28 Dec 2004 13:49:57 +0000 (13:49 +0000)
committeryamaoka <yamaoka>
Tue, 28 Dec 2004 13:49:57 +0000 (13:49 +0000)
lisp/ChangeLog
lisp/nnrss.el

index 081244c..13edcf5 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nnrss.el (nnrss-get-encoding): Fix regexp.
+
 2004-12-27  Simon Josefsson  <jas@extundo.com>
 
        * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used
index 171126b..77fdd82 100644 (file)
@@ -311,7 +311,7 @@ The return value will be `html' or `text'."
   (goto-char (point-min))
   (mm-coding-system-p
    (if (re-search-forward
-       "<\\?[^>]*encoding=\\(?:\"\\([^>]+\\)\"\\|'\\([^>]+\\)'\\)"
+       "<\\?[^>]*encoding=\\(?:\"\\([^\">]+\\)\"\\|'\\([^'>]+\\)'\\)"
        nil t)
        (intern-soft (downcase (or (match-string-no-properties 1)
                                  (match-string-no-properties 2))))