Synch to Gnus 200309140005.
authoryamaoka <yamaoka>
Sun, 14 Sep 2003 01:54:07 +0000 (01:54 +0000)
committeryamaoka <yamaoka>
Sun, 14 Sep 2003 01:54:07 +0000 (01:54 +0000)
lisp/ChangeLog
lisp/nnweb.el
lisp/rfc2047.el
texi/ChangeLog

index 9e5256b..1edfec2 100644 (file)
@@ -1,3 +1,10 @@
+2003-09-13  Jesper Harder  <harder@ifa.au.dk>
+
+       * rfc2047.el (rfc2047-charset-encoding-alist): Add viscii.
+       (rfc2047-encode): Add factors for big5, gb2312 and euc-kr.
+
+       * nnweb.el (nnweb-google-parse-1): Fix parsing.
+
 2003-09-12  Jesper Harder  <harder@ifa.au.dk>
 
        * gnus-group.el (gnus-group-fetch-control): ISC changed
index 8c83eda..d71f595 100644 (file)
@@ -358,7 +358,7 @@ Valid types include `google', `dejanews', and `gmane'.")
       (setq Subject (buffer-string))
       (goto-char (point-max))
       (widen)
-      (forward-line 1)
+      (forward-line 2)
       (when (looking-at "<br><font[^>]+>")
        (goto-char (match-end 0)))
       (if (not (looking-at "<a[^>]+>"))
index b4a4ea6..b709c4e 100644 (file)
@@ -110,7 +110,8 @@ The values can be:
     (cn-gb-2312 . B)
     (euc-kr . B)
     (iso-2022-jp-2 . B)
-    (iso-2022-int-1 . B))
+    (iso-2022-int-1 . B)
+    (viscii . Q))
   "Alist of MIME charsets to RFC2047 encodings.
 Valid encodings are nil, `Q' and `B'.  These indicate binary (no) encoding,
 quoted-printable and base64 respectively.")
@@ -414,6 +415,7 @@ By default, the region is treated as containing addresses (see
                 (downcase (symbol-name encoding)) "?"))
         (factor (case mime-charset
                   ((iso-8859-5 iso-8859-7 iso-8859-8 koi8-r) 1)
+                  ((big5 gb2312 euc-kr) 2)
                   (utf-8 4)
                   (t 8)))
         ;; encoded-words must not be longer than 75 characters,
index b5cfb84..204a002 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-14  Jesper Harder  <harder@ifa.au.dk>
+
+       * pgg.texi (Selecting an implementation, Caching passphrase)
+       (Initializing): Markup fix.
+
 2003-09-12  Jesper Harder  <harder@ifa.au.dk>
 
        * gnus.texi (Summary Buffer Lines): Formatting fix.