Function: rectangle--unhighlight-for-redisplay

rectangle--unhighlight-for-redisplay is a byte-compiled function defined in rect.el.gz.

Signature

(rectangle--unhighlight-for-redisplay ORIG ROL)

Source Code

;; Defined in /usr/src/emacs/lisp/rect.el.gz
(defun rectangle--unhighlight-for-redisplay (orig rol)
  (if (not (eq 'rectangle (car-safe rol)))
      (funcall orig rol)
    (mapc #'delete-overlay (nthcdr 5 rol))
    (setcar (cdr rol) nil)))