Function: gnus-registry-follow-group-p

gnus-registry-follow-group-p is a byte-compiled function defined in gnus-registry.el.gz.

Signature

(gnus-registry-follow-group-p GROUP)

Documentation

Determine if a group name should be followed.

Consults gnus-registry-unfollowed-groups and nnmail-split-fancy-with-parent-ignore-groups.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
(defun gnus-registry-follow-group-p (group)
  "Determine if a group name should be followed.
Consults `gnus-registry-unfollowed-groups' and
`nnmail-split-fancy-with-parent-ignore-groups'."
  (and group
       (not (or (gnus-grep-in-list
                 group
                 gnus-registry-unfollowed-groups)
                (gnus-grep-in-list
                 group
                 nnmail-split-fancy-with-parent-ignore-groups)))))