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

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

Re: nnml-active-file customization


From: Albert Reiner
Subject: Re: nnml-active-file customization
Date: 19 Sep 2005 15:18:28 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

[romeomedina@libero.it, 19 Sep 2005 05:41:28 -0700]:
> Instead, if I do:
> 
> (setq gnus-select-method
>       `(nnml ""
>            (nnml-directory ,my-nnml-directory)
>            (nnml-active-file (concat my-nnml-directory "bla-bla/active"))
> ))
> 
> , when starting gnus I get an error message:
> 
> Wrong type argument: stringp, (concat my-nnml-directory
> "bla-bla/active")
> 
> . I also tried with:
> 
> (setq gnus-select-method
>       `(nnml ""
>            (nnml-directory ,my-nnml-directory)
>            `(nnml-active-file (concat ,my-nnml-directory "bla-bla/active"))
> ))
> 

Provided backticks work as in Common Lisp (I didn't even know that
Elisp has them), you probably want

  `(nnml ... (nnml-active-file (concat ,my-nnml-directory ...)))

i.e., only one level of backticks.

HTH,

Albert.


reply via email to

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