Richard Riley <[email protected]> writes:

hi Richard,

> Just for anyone googling thread sorts, mine is
>
>        (setq gnus-thread-sort-functions
>        '(gnus-thread-sort-by-number
>        (lambda (t1 t2) (not (gnus-thread-sort-by-date t1 t2)))))

Oh, that's the long form of

--8<---------------cut here---------------start------------->8---
(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-number
        (lambda (t1 t2) (gnus-thread-sort-by-date t2 t1))))
--8<---------------cut here---------------end--------------->8---

right? ;-)

And it's equivalent to

--8<---------------cut here---------------start------------->8---
(setq gnus-thread-sort-functions
      '(gnus-thread-sort-by-number
        (not gnus-thread-sort-by-date)))
--8<---------------cut here---------------end--------------->8---

Bye,
Tassilo
-- 
VI VI VI - The Roman Number Of The Beast



_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to