From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9113 Path: main.gmane.org!not-for-mail From: Wesley.Hardaker@sphys.unil.ch Newsgroups: gmane.emacs.gnus.general Subject: Re: Feature request: display group parameter Date: 06 Dec 1996 09:31:39 +0100 Organization: Universite de Lausanne, BSP Sender: whardake@iptsun2.unil.ch Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035149187 16536 80.91.224.250 (20 Oct 2002 21:26:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:26:27 +0000 (UTC) Return-Path: Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.8.4/8.8.4) with SMTP id AAA27414 for ; Fri, 6 Dec 1996 00:50:39 -0800 Original-Received: from unilmta3.unil.ch (cisun29a.unil.ch [130.223.27.29]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Fri, 6 Dec 1996 09:34:52 +0100 Original-Received: from iptsun2.unil.ch by unilmta3.unil.ch with SMTP inbound; Fri, 6 Dec 1996 09:33:08 +0100 Original-Received: by iptsun2.unil.ch (5.x/Unil-3.1/) id AA26177; Fri, 6 Dec 1996 09:31:40 +0100 Original-To: ding@ifi.uio.no X-Face: #qW^}a%m*T^{A:Cp}$R\"38+d}41-Z}uU8,r%F#c#s:~Nzp0G9](s?,K49KJ]s"*7gvRgA SrAvQc4@/}L7Qc=w{)]ACO\R{LF@S{pXfojjjGg6c;q6{~C}CxC^^&~(F]`1W)%9j/iS/ IM",B1M.?{w8ckLTYD'`|kTr\i\cgY)P4 X-Url: http://www.ece.ucdavis.edu/~hardaker In-Reply-To: Lars Magne Ingebrigtsen's message of 05 Dec 1996 20:16:25 +0100 Original-Lines: 27 X-Mailer: Red Gnus v0.73/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:9113 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9113 >>>>> "Lars" == Lars Magne Ingebrigtsen writes: Wes> Wesley.Hardaker@sphys.unil.ch writes: Wes> What I *don't* want to see Wes> though is the Expired articles, because, well, I've deleted them! Wes> (Granted I don't want them totally gone for 2 weeks just in Wes> case..., but I don't want to see them unless I request it). Lars> You could limit the summaries to articles that don't have the Lars> "E" mark in some summary hook? So, how would you go about this in the group params: ((dummy (progn (make-buffer-local gnus-summary-display-hook) (add-hook 'gnus-summary-display-hook 'limit-me-damn-it)))) Or is there a better way... Possibly: ((gnus-summary-display-hook (progn (add-hook 'gnus-summary-display-hook 'limit-me-damn-it) gnus-summary-display-hook))) [ add-hook doesn't specify a return value? (docs don't mentiond it) ] Hmmm... Wes