Function: gnus-summary-limit-to-headers

gnus-summary-limit-to-headers is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-limit-to-headers MATCH &optional REVERSE)

Documentation

Limit the summary buffer to articles that have headers that match MATCH.

If REVERSE (the prefix), limit to articles that don't match.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-limit-to-headers (match &optional reverse)
  "Limit the summary buffer to articles that have headers that match MATCH.
If REVERSE (the prefix), limit to articles that don't match."
  (interactive "sMatch headers (regexp): \nP" gnus-summary-mode)
  (gnus-summary-limit-to-bodies match reverse t))