Function: treemacs--reject-ignored-files--inliner

treemacs--reject-ignored-files--inliner is a function defined in treemacs-core-utils.el.

Signature

(treemacs--reject-ignored-files--inliner INLINE--FORM FILE)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Closure converted to defun by helpful.
(defun treemacs--reject-ignored-files--inliner
    (inline--form file)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp file)
	 (file
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "file")))
	 (body
	  (list 'let
		(list
		 (list 'filename
		       (list 'treemacs--filename file)))
		(list '--none\?
		      (list 'funcall 'it 'filename file)
		      'treemacs-ignored-file-predicates))))
      (if
	  (eq file exp)
	  body
	(macroexp-let*
	 (list
	  (list file exp))
	 body)))))