Function: cider--unless-local-match
cider--unless-local-match is a byte-compiled function defined in
cider-mode.el.
Signature
(cider--unless-local-match VALUE)
Documentation
Return VALUE, unless match-string is a local var.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-mode.el
(defun cider--unless-local-match (value)
"Return VALUE, unless `match-string' is a local var."
(unless (or (get-text-property (point) 'cider-block-dynamic-font-lock)
(member (match-string 0)
(get-text-property (point) 'cider-locals)))
value))