# HG changeset patch # User Miles Bader # Date 1158731106 0 # Node ID 637b0854d9b5de7bd84666ec385ba54493797b66 # Parent 17ac31b8291253f809a4fdc1bf71ca8a77e0f8ce Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 137-140) - Update from CVS 2006-09-19 Andreas Seltenreich * lisp/gnus/nnslashdot.el (nnslashdot-request-article): Update end-of-article regexp. Articles containing quotation were cut prematurely. 2006-09-16 Katsumi Yamaoka * lisp/gnus/message.el (message-cite-original-without-signature): Use nobody by default for the value of From header. (message-cite-original): Ditto. (message-reply): Ditto. 2006-09-14 Reiner Steib * man/gnus.texi (Oort Gnus): Add @xref for `mm-fill-flowed'. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-446 diff -r 17ac31b82912 -r 637b0854d9b5 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Wed Sep 20 04:56:58 2006 +0000 +++ b/lisp/gnus/ChangeLog Wed Sep 20 05:45:06 2006 +0000 @@ -1,3 +1,15 @@ +2006-09-19 Andreas Seltenreich + + * nnslashdot.el (nnslashdot-request-article): Update end-of-article + regexp. Articles containing quotation were cut prematurely. + +2006-09-16 Katsumi Yamaoka + + * message.el (message-cite-original-without-signature): Use nobody by + default for the value of From header. + (message-cite-original): Ditto. + (message-reply): Ditto. + 2006-09-09 Reiner Steib * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate diff -r 17ac31b82912 -r 637b0854d9b5 lisp/gnus/message.el --- a/lisp/gnus/message.el Wed Sep 20 04:56:58 2006 +0000 +++ b/lisp/gnus/message.el Wed Sep 20 05:45:06 2006 +0000 @@ -3280,7 +3280,7 @@ (message-narrow-to-head-1) (vector 0 (or (message-fetch-field "subject") "none") - (message-fetch-field "from") + (or (message-fetch-field "from") "nobody") (message-fetch-field "date") (message-fetch-field "message-id" t) (message-fetch-field "references") @@ -3329,7 +3329,7 @@ (message-narrow-to-head-1) (vector 0 (or (message-fetch-field "subject") "none") - (message-fetch-field "from") + (or (message-fetch-field "from") "nobody") (message-fetch-field "date") (message-fetch-field "message-id" t) (message-fetch-field "references") @@ -5843,7 +5843,7 @@ (setq message-id (message-fetch-field "message-id" t) references (message-fetch-field "references") date (message-fetch-field "date") - from (message-fetch-field "from") + from (or (message-fetch-field "from") "nobody") subject (or (message-fetch-field "subject") "none")) (when gnus-list-identifiers (setq subject (message-strip-list-identifiers subject))) diff -r 17ac31b82912 -r 637b0854d9b5 lisp/gnus/nnslashdot.el --- a/lisp/gnus/nnslashdot.el Wed Sep 20 04:56:58 2006 +0000 +++ b/lisp/gnus/nnslashdot.el Wed Sep 20 05:45:06 2006 +0000 @@ -258,7 +258,9 @@ (setq contents (buffer-substring (search-forward "
") - (search-forward "
"))))))) + (progn + (search-forward "
") + (match-beginning 0)))))))) (search-failed (nnslashdot-lose why))) (when contents diff -r 17ac31b82912 -r 637b0854d9b5 man/ChangeLog --- a/man/ChangeLog Wed Sep 20 04:56:58 2006 +0000 +++ b/man/ChangeLog Wed Sep 20 05:45:06 2006 +0000 @@ -19,6 +19,10 @@ * org.texi (Setting tags): Typo fix. +2006-09-14 Reiner Steib + + * gnus.texi (Oort Gnus): Add @xref for `mm-fill-flowed'. + 2006-09-12 Reiner Steib * files.texi (Visiting): Add index entry "open file". @@ -41,6 +45,8 @@ * gnus.texi (Mail Source Specifiers): Mention problem of duplicate mails with pop3-leave-mail-on-server. Fix wording. + (Limiting): Improve gnus-summary-limit-to-articles. + (X-Face): Fix typo. 2006-09-11 Simon Josefsson diff -r 17ac31b82912 -r 637b0854d9b5 man/gnus.texi --- a/man/gnus.texi Wed Sep 20 04:56:58 2006 +0000 +++ b/man/gnus.texi Wed Sep 20 05:45:06 2006 +0000 @@ -26538,7 +26538,9 @@ @item The option @code{mm-fill-flowed} can be used to disable treatment of ``format=flowed'' messages. Also, flowed text is disabled when sending -inline PGP signed messages. (New in Gnus 5.10.7) +inline PGP signed messages. @xref{Flowed text, , Flowed text, +emacs-mime, The Emacs MIME Manual}. (New in Gnus 5.10.7) +@c This entry is also present in the node "No Gnus". @item Gnus supports the generation of RFC 2298 Disposition Notification requests.