info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gnus-thread-sort-functions


From: Tassilo Horn
Subject: Re: gnus-thread-sort-functions
Date: Thu, 07 May 2009 21:51:29 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.93 (gnu/linux)

Richard Riley <rileyrgdev@googlemail.com> 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]