Variable: preview-error-icon-specs

preview-error-icon-specs is a customizable variable defined in preview.el.

Value

((:type xpm :min 22 :file "prverr24.xpm" :ascent 90)
 (:type xpm :min 18 :file "prverr20.xpm" :ascent 90)
 (:type xpm :file "prverr16.xpm" :ascent 90)
 (:type xbm :file "prverr24.xbm" :ascent 90))

Documentation

The icon used for PostScript errors.

The spec must begin with :type. File names are relative to load-path and data-directory, a spec :min requires a minimal pixel height for preview-reference-face before the spec will be considered. Since evaluating the :file spec takes considerable time under XEmacs, it should come after the :min spec to avoid unnecessary evaluation time.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defcustom preview-error-icon-specs
  '((:type xpm :min 22 :file "prverr24.xpm" :ascent 90)
    (:type xpm :min 18 :file "prverr20.xpm" :ascent 90)
    (:type xpm         :file "prverr16.xpm" :ascent 90)
    (:type xbm         :file "prverr24.xbm" :ascent 90))
  "The icon used for PostScript errors.
The spec must begin with `:type'.  File names are relative to
`load-path' and `data-directory', a spec `:min' requires a
minimal pixel height for `preview-reference-face' before the spec
will be considered.  Since evaluating the `:file' spec takes
considerable time under XEmacs, it should come after the `:min'
spec to avoid unnecessary evaluation time."
  :group 'preview-appearance
  :type preview-specs-type
  :set #'preview-specs-setter)