Function: treemacs--sort-mod-time-asc--inliner
treemacs--sort-mod-time-asc--inliner is a function defined in
treemacs-rendering.el.
Signature
(treemacs--sort-mod-time-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 'file-newer-than-file-p f2 f1)))
(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)]