Function: treemacs--find-theme--inliner

treemacs--find-theme--inliner is a function defined in treemacs-themes.el.

Signature

(treemacs--find-theme--inliner INLINE--FORM NAME)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-themes.el
;; Could not find source code, showing raw function object.
#[(inline--form name)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp name)
	  (name
	   (if (macroexp-copyable-p exp) exp (make-symbol "name")))
	  (body
	   (list '--first
		 (list 'string= (list 'treemacs-theme->name 'it) name)
		 'treemacs--themes)))
       (if (eq name exp) body
	 (macroexp-let* (list (list name exp)) body)))))
  (t)]