Function: hproperty:but-get-all-positions

hproperty:but-get-all-positions is a byte-compiled function defined in hproperty.el.

Signature

(hproperty:but-get-all-positions START END &optional PROPERTY VALUE)

Documentation

Return a list of all button start and end positions between START and END.

Optionally, limit buttons to those whose PROPERTY matches VALUE.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
(defun hproperty:but-get-all-positions (start end &optional property value)
  "Return a list of all button start and end positions between START and END.
Optionally, limit buttons to those whose PROPERTY matches VALUE."
  (mapcar (lambda (overlay)
	    (cons (overlay-start overlay) (overlay-end overlay)))
	  (hproperty:but-get-all-in-region start end property value)))