Function: preview-preamble-changed-function

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

Signature

(preview-preamble-changed-function OV AFTER-CHANGE BEG END &optional LENGTH)

Documentation

Hook function for change hooks on preamble.

See info node (elisp) Overlay Properties for definition of OV, AFTER-CHANGE, BEG, END and LENGTH.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-preamble-changed-function
  (ov _after-change _beg _end &optional _length)
  "Hook function for change hooks on preamble.
See info node `(elisp) Overlay Properties' for
definition of OV, AFTER-CHANGE, BEG, END and LENGTH."
  (let ((format-cons (overlay-get ov 'format-cons)))
    (preview-unwatch-preamble format-cons)
    (preview-format-kill format-cons)
    (setcdr format-cons t)))