Variable: gnus-face-properties-alist

gnus-face-properties-alist is a customizable variable defined in gnus-art.el.gz.

Value

((pbm :face gnus-x-face)
 (png))

Documentation

Alist of image types and properties applied to Face and X-Face images.

Here are examples:

;; Specify the altitude of Face images in the From header.
(setq gnus-face-properties-alist
      '((pbm . (:face gnus-x-face :ascent 80))
(png . (:ascent 80))))

;; Show Face images as pressed buttons.
(setq gnus-face-properties-alist
      '((pbm . (:face gnus-x-face :relief -2))
(png . (:relief -2))))

See the manual for the valid properties for various image types. Currently, pbm is used for X-Face images and png is used for Face images in Emacs.

This variable was added, or its default value changed, in Emacs 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-face-properties-alist '((pbm . (:face gnus-x-face))
					(png . nil))
  "Alist of image types and properties applied to Face and X-Face images.
Here are examples:

;; Specify the altitude of Face images in the From header.
\(setq gnus-face-properties-alist
      \\='((pbm . (:face gnus-x-face :ascent 80))
	(png . (:ascent 80))))

;; Show Face images as pressed buttons.
\(setq gnus-face-properties-alist
      \\='((pbm . (:face gnus-x-face :relief -2))
	(png . (:relief -2))))

See the manual for the valid properties for various image types.
Currently, `pbm' is used for X-Face images and `png' is used for Face
images in Emacs."
  :version "23.1" ;; No Gnus
  :group 'gnus-article-headers
  :type '(repeat (cons :format "%v" (symbol :tag "Image type") plist)))