Function: consult--make-overlay

consult--make-overlay is a byte-compiled function defined in consult.el.

Signature

(consult--make-overlay BEG END &rest PROPS)

Documentation

Make consult overlay between BEG and END with PROPS.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--make-overlay (beg end &rest props)
  "Make consult overlay between BEG and END with PROPS."
  (let ((ov (make-overlay beg end)))
    (while props
      (overlay-put ov (car props) (cadr props))
      (setq props (cddr props)))
    ov))