Merge from gnus--rel--5.10

Revision: emacs@sv.gnu.org/emacs--rel--22--patch-193
This commit is contained in:
Miles Bader 2008-01-20 05:20:30 +00:00
parent 6c64cd0434
commit f6f461323d
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-01-12 Reiner Steib <Reiner.Steib@gmx.de>
* gnus-sum.el (gnus-article-sort-by-random)
(gnus-thread-sort-by-random): Fix doc strings. Reported by
jidanni@jidanni.org.
2007-12-18 Reiner Steib <Reiner.Steib@gmx.de>
* gnus-draft.el (gnus-draft-send-message): Mention process/prefix

View file

@ -4645,11 +4645,11 @@ using some other form will lead to serious barfage."
(gnus-thread-header h1) (gnus-thread-header h2)))
(defsubst gnus-article-sort-by-random (h1 h2)
"Sort articles by article number."
"Sort articles randomly."
(zerop (random 2)))
(defun gnus-thread-sort-by-random (h1 h2)
"Sort threads by root article number."
"Sort threads randomly."
(gnus-article-sort-by-random
(gnus-thread-header h1) (gnus-thread-header h2)))