Function: cider-macrostep--gensyms-in
cider-macrostep--gensyms-in is a byte-compiled function defined in
cider-macrostep.el.
Signature
(cider-macrostep--gensyms-in OVERLAY)
Documentation
Return the gensym matches (NAME BEG END) within OVERLAY's region.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macrostep.el
(defun cider-macrostep--gensyms-in (overlay)
"Return the gensym matches (NAME BEG END) within OVERLAY's region."
(when (overlay-buffer overlay)
(save-excursion
(goto-char (overlay-start overlay))
(let (matches)
(while (re-search-forward cider-macrostep--gensym-regexp
(overlay-end overlay) t)
(push (list (match-string-no-properties 0)
(match-beginning 0) (match-end 0))
matches))
(nreverse matches)))))