Function: treemacs-project->is-expanded?--inliner
treemacs-project->is-expanded?--inliner is a function defined in
treemacs-workspaces.el.
Signature
(treemacs-project->is-expanded?--inliner INLINE--FORM SELF)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
;; Closure converted to defun by helpful.
(defun treemacs-project->is-expanded?--inliner
(inline--form self)
(ignore inline--form)
(catch 'inline--just-use
(let*
((exp self)
(self
(if
(macroexp-copyable-p exp)
exp
(make-symbol "self")))
(body
(list 'memq
(list '-> self
(list 'treemacs-project->position)
(list 'treemacs-button-get :state))
'treemacs--open-node-states)))
(if
(eq self exp)
body
(macroexp-let*
(list
(list self exp))
body)))))