Function: treemacs--find-project-for-path--inliner

treemacs--find-project-for-path--inliner is a function defined in treemacs-workspaces.el.

Signature

(treemacs--find-project-for-path--inliner INLINE--FORM PATH)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
;; Closure converted to defun by helpful.
(defun treemacs--find-project-for-path--inliner
    (inline--form path)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp path)
	 (path
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "path")))
	 (body
	  (list 'treemacs-is-path path :in-workspace)))
      (if
	  (eq path exp)
	  body
	(macroexp-let*
	 (list
	  (list path exp))
	 body)))))