From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84540 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:02:42 +0200 Message-ID: <877g5phj3x.fsf@micropit.roche-blanche.homenet.org> References: <87bnv1yfd9.fsf@mailbox.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1399989799 13295 80.91.229.3 (13 May 2014 14:03:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 May 2014 14:03:19 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M32785@lists.math.uh.edu Tue May 13 16:03:12 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 1WkDIV-0001hZ-Rw for ding-account@gmane.org; Tue, 13 May 2014 16:03:12 +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 1WkDIJ-0006xT-M0; Tue, 13 May 2014 09:02:59 -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 1WkDII-0006xI-2c for ding@lists.math.uh.edu; Tue, 13 May 2014 09:02:58 -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 1WkDIG-00071K-Oa for ding@lists.math.uh.edu; Tue, 13 May 2014 09:02:58 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1WkDIF-0005Hq-Eb for ding@gnus.org; Tue, 13 May 2014 16:02:55 +0200 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WkDIE-0001GY-N6 for ding@gnus.org; Tue, 13 May 2014 16:02:54 +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:02:54 +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:02:54 +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:wFNnsVQfQoi5RgozLNz8aHVNols= X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84540 Archived-At: On Tue, May 13 2014, Alexander Baier wrote: > Group Parameters for group "org.group.example": > > #+BEGIN_SRC emacs-lisp > ((subscribed . t) > (to-list . "foo@example-list.org") > (lang . "en_GB")) > #+END_SRC (defvar my-language "my-default-language") (make-variable-buffer-local 'my-language) (setq gnus-parameters '(("org.group.example" (subscribed . t) (to-list . "foo@example-list.org") (my-language "en_GB")))) ; Without the dot here! > #+BEGIN_SRC emacs-lisp > (ispell-change-dictionary (gnus-get-group-param 'lang)) > #+END_SRC (ispell-change-dictionary my-language) Or check out this page: http://www.emacswiki.org/emacs/AutoDictionaryMode -- Peter