Function: treemacs--mac-ignore-file-predicate--inliner

treemacs--mac-ignore-file-predicate--inliner is a function defined in treemacs-core-utils.el.

Signature

(treemacs--mac-ignore-file-predicate--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--mac-ignore-file-predicate--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 'or
		(list 'string-equal file ".DS_Store")
		(list 'string-equal file ".localized"))))
      (if
	  (eq file exp)
	  body
	(macroexp-let*
	 (list
	  (list file exp))
	 body)))))