Function: redisplay--unhighlight-overlay-function

redisplay--unhighlight-overlay-function is a byte-compiled function defined in simple.el.gz.

Signature

(redisplay--unhighlight-overlay-function ROL)

Documentation

If ROL is an overlay, call delete-overlay.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun redisplay--unhighlight-overlay-function (rol)
  "If ROL is an overlay, call `delete-overlay'."
  (when (overlayp rol) (delete-overlay rol)))