From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84542 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?Peter_M=C3=BCnster?= Newsgroups: gmane.emacs.gnus.general Subject: Re: Custom group or topic parameters Date: Tue, 13 May 2014 16:50:32 +0200 Message-ID: <87y4y5g2br.fsf@micropit.roche-blanche.homenet.org> References: <87bnv1yfd9.fsf@mailbox.org> <877g5phj3x.fsf@micropit.roche-blanche.homenet.org> <874n0tyd6c.fsf@mailbox.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1399992715 32547 80.91.229.3 (13 May 2014 14:51:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 May 2014 14:51:55 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M32787@lists.math.uh.edu Tue May 13 16:51:49 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WkE3Y-0001oQ-B6 for ding-account@gmane.org; Tue, 13 May 2014 16:51:48 +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 1WkE38-0007DB-BV; Tue, 13 May 2014 09:51:22 -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 1WkE36-0007Ct-OG for ding@lists.math.uh.edu; Tue, 13 May 2014 09:51:20 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1WkE2g-0007FZ-IQ for ding@lists.math.uh.edu; Tue, 13 May 2014 09:51:18 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1WkE2Z-0006cq-It for ding@gnus.org; Tue, 13 May 2014 16:50:47 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WkE2Z-0000Id-Bk for ding@gnus.org; Tue, 13 May 2014 16:50:47 +0200 Original-Received: from arennes-651-1-368-207.w2-14.abo.wanadoo.fr ([2.14.207.207]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 May 2014 16:50:47 +0200 Original-Received: from pmlists by arennes-651-1-368-207.w2-14.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 May 2014 16:50:47 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 31 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: arennes-651-1-368-207.w2-14.abo.wanadoo.fr User-Agent: Gnus/5.130012 (=?utf-8?Q?=E7=9C=9F?= Gnus v0.12) Emacs/24.4.50 (gnu/linux) Cancel-Lock: sha1:VIZtGWY8n+V1O+4Edg9v9/knCno= X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84542 Archived-At: On Tue, May 13 2014, Alexander Baier wrote: >> (setq gnus-parameters >> '(("org.group.example" >> (subscribed . t) >> (to-list . "foo@example-list.org") >> (my-language "en_GB")))) ; Without the dot here! >> >> (ispell-change-dictionary my-language) > > So gnus or message-mode will set all variables in gnus-parameters given > as a two-element list? Yes, see also here: http://www.gnus.org/manual/gnus_28.html Sorry, my example won't work in message-mode: the variable has the value only in the summary buffer. Here a work-around: (setq gnus-parameters '(("org.group.example" (subscribed . t) (to-list . "foo@example-list.org") (my-language "en_GB") (posting-style (eval (setq my-language "en_GB")))))) Another work-around is in the manual. -- Peter