Function: gnus-group-list-all-matching

gnus-group-list-all-matching is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-list-all-matching LEVEL REGEXP &optional LOWEST)

Documentation

List all groups that match REGEXP.

If the prefix LEVEL is non-nil, it should be a number that says which level to cut off listing groups. If LOWEST, don't list groups with level lower than LOWEST.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-list-all-matching (level regexp &optional lowest)
  "List all groups that match REGEXP.
If the prefix LEVEL is non-nil, it should be a number that says which
level to cut off listing groups.
If LOWEST, don't list groups with level lower than LOWEST."
  (interactive "P\nsList newsgroups matching: " gnus-group-mode)
  (when level
    (setq level (prefix-numeric-value level)))
  (gnus-group-list-matching (or level gnus-level-killed) regexp t lowest))