Function: preview-filter-specs
preview-filter-specs is a byte-compiled function defined in
preview.el.
Signature
(preview-filter-specs SPEC-LIST)
Documentation
Find the first of the fitting specs and make an image.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-filter-specs (spec-list)
"Find the first of the fitting specs and make an image."
(let (image)
(while (and spec-list
(not (setq image
(catch 'preview-filter-specs
(preview-filter-specs-1 (car spec-list))))))
(setq spec-list (cdr spec-list)))
image))