Variable: preview-nonready-icon-specs

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

Value

((:type xpm :min 26 :file "prvwrk24.xpm" :ascent 90)
 (:type xpm :min 22 :file "prvwrk20.xpm" :ascent 90)
 (:type xpm :min 17 :file "prvwrk16.xpm" :ascent 90)
 (:type xpm :min 15 :file "prvwrk14.xpm" :ascent 90)
 (:type xpm :file "prvwrk12.xpm" :ascent 90)
 (:type xbm :file "prvwrk24.xbm" :ascent 90))

Documentation

The icon used for previews to be generated.

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-nonready-icon-specs
  '((:type xpm :min 26 :file "prvwrk24.xpm" :ascent 90)
    (:type xpm :min 22 :file "prvwrk20.xpm" :ascent 90)
    (:type xpm :min 17 :file "prvwrk16.xpm" :ascent 90)
    (:type xpm :min 15 :file "prvwrk14.xpm" :ascent 90)
    (:type xpm         :file "prvwrk12.xpm" :ascent 90)
    (:type xbm         :file "prvwrk24.xbm" :ascent 90))
  "The icon used for previews to be generated.
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)