Function: preview-clearout-document

preview-clearout-document is an interactive and byte-compiled function defined in preview.el.

Signature

(preview-clearout-document)

Documentation

Clear out all previews in current document.

The document consists of all buffers that have the same master file as the current buffer. This makes the current document lose all previews.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-clearout-document ()
  "Clear out all previews in current document.
The document consists of all buffers that have the same master file
as the current buffer.  This makes the current document lose
all previews."
  (interactive)
  (preview-walk-document #'preview-clearout-buffer))