From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63913 Path: news.gmane.org!not-for-mail From: Michael Cook Newsgroups: gmane.emacs.gnus.general Subject: Re: calling gnus-article-fill-cited-article only for a given group Date: Sun, 29 Oct 2006 16:08:10 -0500 Organization: http://www.waxrat.com Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: sea.gmane.org 1162156201 18255 80.91.229.2 (29 Oct 2006 21:10:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 29 Oct 2006 21:10:01 +0000 (UTC) Original-X-From: ding-owner+m12440@lists.math.uh.edu Sun Oct 29 22:09:59 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GeHue-000675-2V for ding-account@gmane.org; Sun, 29 Oct 2006 22:09:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1GeHua-0004pI-00; Sun, 29 Oct 2006 15:09:44 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1GeHtl-0004pD-00 for ding@lists.math.uh.edu; Sun, 29 Oct 2006 15:08:53 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1GeHtj-0004vt-6E for ding@lists.math.uh.edu; Sun, 29 Oct 2006 15:08:52 -0600 Original-Received: from alnrmhc11.comcast.net ([206.18.177.51]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1GeHtf-0005RB-00 for ; Sun, 29 Oct 2006 22:08:47 +0100 Original-Received: from pigpen.waxrat.com ([65.96.232.13]) by comcast.net (alnrmhc11) with ESMTP id <20061029210815b1100fmibde>; Sun, 29 Oct 2006 21:08:15 +0000 Original-Received: from pigpen.waxrat.com (localhost.localdomain [127.0.0.1]) by pigpen.waxrat.com (8.12.11/8.12.11) with ESMTP id k9TL8A8q009140 for ; Sun, 29 Oct 2006 16:08:14 -0500 Original-To: ding@gnus.org In-Reply-To: (Reiner Steib's message of "Sun, 29 Oct 2006 21:49:13 +0100") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (gnu/linux) X-Spam-Score: -2.5 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:63913 Archived-At: Reiner Steib writes: > On Sun, Oct 29 2006, Michael Cook wrote: > >> For a given group (and only that group), I want >> gnus-article-fill-cited-article invoked when displaying articles. >> What's the right way to get that to happen? >> >> I think I want to do >> >> (add-hook 'gnus-article-prepare-hook 'gnus-article-fill-cited-article)) >> >> but how do I get that to be in effect only for a given group. > > Setting `gnus-treat-fill-article' to t for that group (via > `gnus-parameters' or `G c') should have the same effect? Yes, that seems to do it. >> In particular, after I leave this group, >> gnus-article-fill-cited-article should no longer be on >> gnus-article-prepare-hook. > > You need to make the hook buffer local and set it as follows in > `gnus-posting-styles': > > ("gmane\\.network\\.leafnode" > (eval > (add-hook (make-local-variable 'gnus-message-setup-hook) > 'rs-message-insert-in-reply-to))) That doesn't seem to be necessary, I think. Anyhow, thanks!