From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/9243 Path: main.gmane.org!not-for-mail From: Wesley.Hardaker@sphys.unil.ch Newsgroups: gmane.emacs.gnus.general Subject: Re: group params and local-key bindings Date: 18 Dec 1996 09:16:06 +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 1035149296 17280 80.91.224.250 (20 Oct 2002 21:28:16 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:28:16 +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 AAA00246 for ; Wed, 18 Dec 1996 00:32:04 -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 ; Wed, 18 Dec 1996 09:17:53 +0100 Original-Received: from iptsun2.unil.ch by unilmta3.unil.ch with SMTP inbound; Wed, 18 Dec 1996 09:17:42 +0100 Original-Received: by iptsun2.unil.ch (5.x/Unil-3.1/) id AA10871; Wed, 18 Dec 1996 09:16:10 +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: dubach1@husc.harvard.edu's message of 17 Dec 1996 11:58:47 -0500 Original-Lines: 18 X-Mailer: Red Gnus v0.76/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:9243 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:9243 >>>>> "Joev" == Joev Dubach writes: Joev> I'm not sure what the best way to do this is, but this works for me: Joev> (add-hook 'gnus-summary-mode-hook Joev> (function (lambda () (local-set-key "\C-cj" Joev> 'junk-mail-complain-standard)))) What you're doing here is adding the key to all the summary buffers. I'm trying to add it to only the groups under one topic, so I'm using topic/group parameters to try and accomplish this... You shouldn't be doing it this way, actually... Its faster to do the following in your .gnus: (define-key gnus-summary-mode-map "\C-cj" 'junk-mail-complain-standard) Wes