Changes committed gnus/lisp (ChangeLog gnus-sum.el)
"Miles Bader" <[email protected]>
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog gnus-sum.el Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 274) - Update from CVS 2008-01-12 Reiner Steib <[email protected]> * lisp/gnus-sum.el (gnus-article-sort-by-random) (gnus-thread-sort-by-random): Fix doc strings. Reported by [email protected]. Revision: [email protected]/gnus--devo--0--patch-444 Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.1738 gnus/lisp/ChangeLog:7.1739 --- ChangeLog:7.1738 Fri Jan 18 06:51:04 2008 +++ ChangeLog Sun Jan 20 06:23:40 2008 @@ -56,6 +56,12 @@ * imap.el (imap-ping-server): New function. (imap-opened): Call imap-ping-server. +2008-01-12 Reiner Steib <[email protected]> + + * gnus-sum.el (gnus-article-sort-by-random) + (gnus-thread-sort-by-random): Fix doc strings. Reported by + [email protected]. + 2008-01-11 Katsumi Yamaoka <[email protected]> * gnus-art.el (gnus-article-describe-bindings): New function. Index: gnus-sum.el diff -u gnus/lisp/gnus-sum.el:7.211 gnus/lisp/gnus-sum.el:7.212 --- gnus-sum.el:7.211 Fri Dec 28 23:28:12 2007 +++ gnus-sum.el Sun Jan 20 06:23:40 2008 @@ -4797,11 +4797,11 @@ (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)))