Function: gnus-block-private-groups

gnus-block-private-groups is a byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-block-private-groups GROUP)

Documentation

Allows images in newsgroups to be shown, blocks images in all other groups.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-block-private-groups (group)
  "Allows images in newsgroups to be shown, blocks images in all other groups."
  (if (or (gnus-news-group-p group)
	  (gnus-member-of-valid 'global group)
	  (member group gnus-global-groups))
      ;; Block nothing in news groups.
      nil
    ;; Block everything anywhere else.
    "."))