Function: gnus-treat-mail-picon

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

Signature

(gnus-treat-mail-picon)

Documentation

Display picons in the Cc and 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-mail-picon ()
  "Display picons in the Cc and 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 'mail-picon gnus-article-wash-types))
	 (gnus-delete-images 'mail-picon)
       (gnus-picon-transform-address "cc" 'mail-picon)
       (gnus-picon-transform-address "to" 'mail-picon)))))