Bernd <[EMAIL PROTECTED]> writes: > I tried to customize the summary buffer appearance by setting > > (setq gnus-thread-sort-functions > '(not gnus-thread-sort-by-number)) > > in order to put the newest thread on top, but this does not work. > > I get a warning, but it vanishes after a short pause so I can not read > it fully. It says something about "not" needing only one parameter and > getting two - or so ...
C-h v gnus-thread-sort-functions is informative. You're setting it to a list of 'not and 'gnus-thread-sort-by-number, where you probably want a list of '(not gnus-thread-sort-by-number); try (setq gnus-threads-sort-functions '((not gnus-thread-sort-by-number))) instead. --dzm _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
