Function: preview-unwatch-preamble

preview-unwatch-preamble is a byte-compiled function defined in preview.el.

Signature

(preview-unwatch-preamble FORMAT-CONS)

Documentation

Stop watching a format on FORMAT-CONS.

The watch has been set up by preview-watch-preamble.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-unwatch-preamble (format-cons)
  "Stop watching a format on FORMAT-CONS.
The watch has been set up by `preview-watch-preamble'."
  (when (consp (cdr format-cons))
    (when (cdddr format-cons)
      (delete-overlay (cdddr format-cons)))
    (setcdr (cdr format-cons) nil)))