Function: gnus-treat-newsgroups-picon

gnus-treat-newsgroups-picon is an autoloaded, interactive and byte-compiled function defined in gnus-picon.el.gz.

Signature

(gnus-treat-newsgroups-picon)

Documentation

Display picons in the Newsgroups and Followup-To headers.

If picons are already displayed, remove them.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-picon.el.gz
;;;###autoload
(defun gnus-treat-newsgroups-picon ()
  "Display picons in the Newsgroups and Followup-To headers.
If picons are already displayed, remove them."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (let ((wash-picon-p buffer-read-only))
    (gnus-with-article-buffer
     (if (and wash-picon-p (memq 'newsgroups-picon gnus-article-wash-types))
	 (gnus-delete-images 'newsgroups-picon)
       (gnus-picon-transform-newsgroups "newsgroups")
       (gnus-picon-transform-newsgroups "followup-to")))))