Function: replace-preview-cleanup

replace-preview-cleanup is a byte-compiled function defined in replace.el.gz.

Signature

(replace-preview-cleanup)

Documentation

Remove the overlays that preview the replacement text.

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defun replace-preview-cleanup ()
  "Remove the overlays that preview the replacement text."
  (mapc #'delete-overlay replace-preview-overlays)
  (setq replace-preview-overlays nil))