Function: treemacs-project->is-disabled?--cmacro

treemacs-project->is-disabled?--cmacro is a function defined in treemacs-workspaces.el.

Signature

(treemacs-project->is-disabled?--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining treemacs-project->is-disabled?.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
;; Closure converted to defun by helpful.
(defun treemacs-project->is-disabled?--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `treemacs-project->is-disabled?'."
  (cl-block treemacs-project->is-disabled?--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block treemacs-project->is-disabled?
	(progn
	  (or
	   (treemacs-project-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'treemacs-project cl-x)))
	  (aref cl-x 4)))
     nil nil nil cl-x)))