Function: treemacs-project-p--inliner

treemacs-project-p--inliner is a function defined in treemacs-workspaces.el.

Signature

(treemacs-project-p--inliner INLINE--FORM X)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
;; Could not find source code, showing raw function object.
#[(inline--form x)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp x)
	  (x (if (macroexp-copyable-p exp) exp (make-symbol "x")))
	  (body
	   (list 'and
		 (list 'memq (list 'type-of x)
		       'cl-struct-treemacs-project-tags)
		 t)))
       (if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
  (cl-struct-treemacs-project-tags cl-struct-treemacs-project-tags)]