home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / gnu / emacs / gnus / 1278 < prev    next >
Encoding:
Text File  |  1992-11-17  |  1.4 KB  |  37 lines

  1. Newsgroups: gnu.emacs.gnus
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!darwin.sura.net!wupost!cs.utexas.edu!torn!nott!bnrgate!bmerh85!bmerh85!hamish
  3. From: Hamish.Macdonald@x400gate.bnr.ca (Hamish Macdonald)
  4. Subject: Re: easier killing
  5. In-Reply-To: carlton@scws7.harvard.edu's message of 17 Nov 92 05:33:33 GMT
  6. Message-ID: <1992Nov17.184002.12019@bmerh85.bnr.ca>
  7. Lines: 23
  8. Sender: news@bmerh85.bnr.ca (Usenet News)
  9. Organization: Bell Northern Research
  10. References: <CARLTON.92Nov16213333@scws7.harvard.edu>
  11. Distribution: gnu
  12. Date: Tue, 17 Nov 92 18:40:02 GMT
  13.  
  14. >>>>> On 17 Nov 92 05:33:33 GMT,
  15. >>>>> In message <CARLTON.92Nov16213333@scws7.harvard.edu>,
  16. >>>>> carlton@scws7.harvard.edu (david carlton) wrote:
  17.  
  18. david> Has anybody written a function for GNUS that sticks a kill
  19. david> command for the current subject (without re's, hopefully) in
  20. david> the kill file for the current newsgroup and performs all of
  21. david> those kills?  That seems to be the format of most of my kills.
  22.  
  23. (defun my-gnus-kill-this-subject ()
  24.   "Kill the current subject and add it to the local KILL file."
  25.   (interactive)
  26.   (gnus-Subject-edit-local-kill)
  27.   (gnus-Kill-file-kill-by-subject)
  28.   (gnus-Kill-file-exit)
  29.   (gnus-Subject-kill-same-subject nil)
  30.   (gnus-Subject-show-article)
  31.   )
  32.  
  33. I bind it to 'K' in the *Subject* buffer.
  34.  
  35. I don't think that it does any re: removal, unless
  36. gnus-Kill-file-kill-by-subject does so.
  37.