Function: cider-end-of-proprange-p

cider-end-of-proprange-p is a byte-compiled function defined in cider-repl.el.

Signature

(cider-end-of-proprange-p PROPERTY)

Documentation

Return t if at the the end of a property range for PROPERTY.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-end-of-proprange-p (property)
  "Return t if at the the end of a property range for PROPERTY."
  (and (get-char-property (max (point-min) (1- (point))) property)
       (not (get-char-property (point) property))))