From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79474 Path: news.gmane.org!not-for-mail From: lee Newsgroups: gmane.emacs.gnus.general Subject: Re: inheritatively specifying group parameters Date: Thu, 14 Jul 2011 18:05:02 +0200 Organization: my virtual residence Message-ID: <87ei1setld.fsf@yun.yagibdah.de> References: <8762ncnb5a.fsf@member.fsf.org> <87r55v1hks.fsf@member.fsf.org> <871uxvrody.fsf@yun.yagibdah.de> <87fwma7ivx.fsf@member.fsf.org> <87liw22bfi.fsf@yun.yagibdah.de> <877h7l3nwy.fsf@yun.yagibdah.de> <87hb6plw0g.fsf@micropit.couberia.bzh> <87zkkhcrp4.fsf@member.fsf.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1310659528 17994 80.91.229.12 (14 Jul 2011 16:05:28 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 14 Jul 2011 16:05:28 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M27770@lists.math.uh.edu Thu Jul 14 18:05:24 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QhOPj-0006TI-1S for ding-account@gmane.org; Thu, 14 Jul 2011 18:05:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1QhOPV-0005qX-UV; Thu, 14 Jul 2011 11:05:09 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1QhOPU-0005qG-HV for ding@lists.math.uh.edu; Thu, 14 Jul 2011 11:05:08 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QhOPQ-00024E-BH for ding@lists.math.uh.edu; Thu, 14 Jul 2011 11:05:08 -0500 Original-Received: from static.103.179.46.78.clients.your-server.de ([78.46.179.103] helo=static.73.179.46.78.clients.your-server.de) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QhOPO-0002Rn-PK for ding@gnus.org; Thu, 14 Jul 2011 18:05:02 +0200 Original-Received: from lee by yun.yagibdah.de with local (Exim 4.76) (envelope-from ) id 1QhOPO-0006js-7F for ding@gnus.org; Thu, 14 Jul 2011 18:05:02 +0200 Mail-Followup-To: ding@gnus.org In-Reply-To: <87zkkhcrp4.fsf@member.fsf.org> (Tassilo Horn's message of "Thu, 14 Jul 2011 08:16:39 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-Spam-Score: 0.1 (/) X-Spam-Report: SpamAssassin (3.3.1 2010-03-16) analysis follows Bayesian score: 0.0000 Ham tokens: 0.000-1864--6176h-0s--0d--H*u:Emacs, 0.000-1728--5726h-0s--0d--H*u:Gnus, 0.000-1652--5474h-0s--0d--H*u:linux, 0.000-1652--5474h-0s--0d--H*UA:linux, 0.000-1602--5306h-0s--0d--H*u:gnu Spam tokens: 0.987-1--0h-1s--0d--H*r:sk:clients, 0.957-4449--1457h-53776s--0d--H*r:quimby.gnus.org, 0.923-243--206h-4088s--0d--H*r:sk:static., 0.885-1692--4247h-54080s--0d--HX-Spam-Relays-External:quimby.gnus.org, 0.885-1692--4247h-54080s--0d--H*RU:quimby.gnus.org Autolearn status: no -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 2.0 HELO_DYNAMIC_IPADDR Relay HELO'd using suspicious hostname (IP addr 1) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79474 Archived-At: Hi Tassilo, hi Peter! Tassilo Horn writes: > pmlists@free.fr (Peter M=FCnster) writes: > > Hi Peter, > >>>>>>> `((,(rx (or "emacs" "gnus")) ;; 1) >> >>> How comes that the following doesn't work: >>> >>> '((,(rx (or "bogus" "mail")) >> >> '() is not the same as `(). >> '(): everything is quoted, same as (quote ...) >> `(): not all is quoted, everything inside ,() is expanded >> >> (I'm a lisp-beginner, so my explanation might be wrong...) > > You are totally correct. In my code, I've used ` and the ,(rx "foo") > forms say that this form should be evaluated when expanding the macro, > resulting in a regular expression. Ah, I didn't know that, I've only just started to learn some lisp. I noticed the different apostrophes and only thought it must be due to different character encoding. > > ,----[ C-h v gnus-parameters RET ] > | gnus-parameters is a variable defined in `gnus.el'. > | Its value is shown below. > |=20 > | Documentation: > | Alist of group parameters. > | [...] > |=20 > | Value: (("\\(?:\\(?:emac\\|gnu\\)s\\)" > [...] > `---- > > See? The rx forms are replaced by their results. Yes, and now the error message I got becomes understandable :) I'll try it out again :)