On Fri, 01 Jul 2011 14:27:18 +0200 "Sebastien Vauban" 
<[email protected]> wrote: 

SV>               (when ,(fboundp 'gnus-registry-split-fancy-with-parent)
SV>                 (any ,gnus-ignored-from-addresses
SV>                      (: gnus-registry-split-fancy-with-parent)))

This is inside a `() list...  I believe you want:

,@(when (fboundp 'gnus-registry-split-fancy-with-parent)
    (list 'any gnus-ignored-from-addresses
       '(: gnus-registry-split-fancy-with-parent)))

which, if `gnus-registry-split-fancy-with-parent' is bound, will eval
the inner list.

It's kind of a strange expression though, I'm curious what it does.  If
any ignored From addresses (usually the user address) show up, use the
registry splitting?

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

Reply via email to