Function: treemacs-find-in-dom--inliner
treemacs-find-in-dom--inliner is a function defined in
treemacs-dom.el.
Signature
(treemacs-find-in-dom--inliner INLINE--FORM KEY)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-dom.el
;; Closure converted to defun by helpful.
(defun treemacs-find-in-dom--inliner
(inline--form key)
(ignore inline--form)
(catch 'inline--just-use
(let*
((exp key)
(key
(if
(macroexp-copyable-p exp)
exp
(make-symbol "key")))
(body
(list 'ht-get 'treemacs-dom key)))
(if
(eq key exp)
body
(macroexp-let*
(list
(list key exp))
body)))))