From: yamaoka Date: Sun, 14 Sep 2003 01:54:07 +0000 (+0000) Subject: Synch to Gnus 200309140005. X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=488bcf77647760c51eb4e5076291041ed0c060a1;p=elisp%2Fgnus.git- Synch to Gnus 200309140005. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9e5256b..1edfec2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2003-09-13 Jesper Harder + + * 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 * gnus-group.el (gnus-group-fetch-control): ISC changed diff --git a/lisp/nnweb.el b/lisp/nnweb.el index 8c83eda..d71f595 100644 --- a/lisp/nnweb.el +++ b/lisp/nnweb.el @@ -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 "
]+>") (goto-char (match-end 0))) (if (not (looking-at "]+>")) diff --git a/lisp/rfc2047.el b/lisp/rfc2047.el index b4a4ea6..b709c4e 100644 --- a/lisp/rfc2047.el +++ b/lisp/rfc2047.el @@ -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, diff --git a/texi/ChangeLog b/texi/ChangeLog index b5cfb84..204a002 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,8 @@ +2003-09-14 Jesper Harder + + * pgg.texi (Selecting an implementation, Caching passphrase) + (Initializing): Markup fix. + 2003-09-12 Jesper Harder * gnus.texi (Summary Buffer Lines): Formatting fix.