Function: gnus-add-image
gnus-add-image is a byte-compiled function defined in gnus-art.el.gz.
Signature
(gnus-add-image CATEGORY IMAGE)
Documentation
Add IMAGE of CATEGORY to the list of displayed images.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-add-image (category image)
"Add IMAGE of CATEGORY to the list of displayed images."
(let ((entry (assq category gnus-article-image-alist)))
(unless entry
(setq entry (list category))
(push entry gnus-article-image-alist))
(nconc entry (list image))))