From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5684 Path: news.gmane.org!not-for-mail From: romeomedina@libero.it Newsgroups: gmane.emacs.gnus.user Subject: Re: nnml directory customization Date: 17 Sep 2005 00:34:40 -0700 Organization: http://groups.google.com Message-ID: <1126942480.831335.31440@o13g2000cwo.googlegroups.com> References: <1126455169.075131.151860@g47g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1138671366 28457 80.91.229.2 (31 Jan 2006 01:36:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:36:06 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:40 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!newsfeed.pionier.net.pl!news.glorb.com!postnews.google.com!o13g2000cwo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: 151.26.90.206 Original-X-Trace: posting.google.com 1126942486 9393 127.0.0.1 (17 Sep 2005 07:34:46 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sat, 17 Sep 2005 07:34:46 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.2) Gecko/20040804,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: o13g2000cwo.googlegroups.com; posting-host=151.26.90.206; posting-account=jAR8oAwAAAAzWEZi_PGTqTf56RwG205B Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5826 Original-Lines: 46 X-Gnus-Article-Number: 5826 Tue Jan 17 17:35:40 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5684 Archived-At: Rodolfo wrote: > If I put in my ~/.gnus.el the following: > > (setq gnus-select-method > '(nnml "" > (nnml-directory "/path/to/my/nnml/directory"))) > > , everything seems to be all right: I get no error messages. > Instead, if I first put the following line: > > (setq my-nnml-directory "/path/to/my/nnml/directory") > > and then: > > (setq gnus-select-method > '(nnml "" > (nnml-directory my-nnml-directory))) > > , when starting gnus I get the following error message: > > nnml () open error: ''. Continue? (y or n) > > . Why? Any idea? David wrote: > perhaps the most straightforward thing is > > (setq gnus-select-method > `(nnml "" > (nnml-directory ,my-nnml-directory))) > > (note the backquote and comma). Reiner wrote: > See (info "(elisp)Backquote") to learn more about "`" and ",". Thanks indeed! That worked fine. Rodolfo