home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.emacs.gnus
- Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!darwin.sura.net!wupost!cs.utexas.edu!torn!nott!bnrgate!bmerh85!bmerh85!hamish
- From: Hamish.Macdonald@x400gate.bnr.ca (Hamish Macdonald)
- Subject: Re: easier killing
- In-Reply-To: carlton@scws7.harvard.edu's message of 17 Nov 92 05:33:33 GMT
- Message-ID: <1992Nov17.184002.12019@bmerh85.bnr.ca>
- Lines: 23
- Sender: news@bmerh85.bnr.ca (Usenet News)
- Organization: Bell Northern Research
- References: <CARLTON.92Nov16213333@scws7.harvard.edu>
- Distribution: gnu
- Date: Tue, 17 Nov 92 18:40:02 GMT
-
- >>>>> On 17 Nov 92 05:33:33 GMT,
- >>>>> In message <CARLTON.92Nov16213333@scws7.harvard.edu>,
- >>>>> carlton@scws7.harvard.edu (david carlton) wrote:
-
- david> Has anybody written a function for GNUS that sticks a kill
- david> command for the current subject (without re's, hopefully) in
- david> the kill file for the current newsgroup and performs all of
- david> those kills? That seems to be the format of most of my kills.
-
- (defun my-gnus-kill-this-subject ()
- "Kill the current subject and add it to the local KILL file."
- (interactive)
- (gnus-Subject-edit-local-kill)
- (gnus-Kill-file-kill-by-subject)
- (gnus-Kill-file-exit)
- (gnus-Subject-kill-same-subject nil)
- (gnus-Subject-show-article)
- )
-
- I bind it to 'K' in the *Subject* buffer.
-
- I don't think that it does any re: removal, unless
- gnus-Kill-file-kill-by-subject does so.
-