Function: cider-property-bounds

cider-property-bounds is a byte-compiled function defined in cider-util.el.

Signature

(cider-property-bounds PROP)

Documentation

Return the the positions of the previous and next change to PROP.

PROP is the name of a text property.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-property-bounds (prop)
  "Return the the positions of the previous and next change to PROP.
PROP is the name of a text property."
  (let ((end (next-single-char-property-change (point) prop)))
    (list (previous-single-char-property-change end prop) end)))