Function: treemacs--sort-size-asc--inliner

treemacs--sort-size-asc--inliner is a function defined in treemacs-rendering.el.

Signature

(treemacs--sort-size-asc--inliner INLINE--FORM F1 F2)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-rendering.el
;; Could not find source code, showing raw function object.
#[(inline--form f1 f2)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp f1)
	  (f1 (if (macroexp-copyable-p exp) exp (make-symbol "f1")))
	  (body
	   (let*
	       ((exp f2)
		(f2
		 (if (macroexp-copyable-p exp) exp (make-symbol "f2")))
		(body
		 (list '< (list 'nth 7 (list 'file-attributes f1))
		       (list 'nth 7 (list 'file-attributes f2)))))
	     (if (eq f2 exp) body
	       (macroexp-let* (list (list f2 exp)) body)))))
       (if (eq f1 exp) body (macroexp-let* (list (list f1 exp)) body)))))
  (t)]