Function: gnus-kill-file-kill-by-subject

gnus-kill-file-kill-by-subject is an interactive and byte-compiled function defined in gnus-kill.el.gz.

Signature

(gnus-kill-file-kill-by-subject)

Documentation

Kill by subject.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-kill.el.gz
(defun gnus-kill-file-kill-by-subject ()
  "Kill by subject."
  (interactive)
  (gnus-kill-file-enter-kill
   "Subject"
   (if (vectorp gnus-current-headers)
       (regexp-quote
	(gnus-simplify-subject (mail-header-subject gnus-current-headers)))
     "")
   t))