Function: treemacs--sort-mod-time-desc
treemacs--sort-mod-time-desc is a byte-compiled function defined in
treemacs-rendering.el.
Signature
(treemacs--sort-mod-time-desc F1 F2)
Documentation
Sort F1 and F2 by modification time descending.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-rendering.el
(define-inline treemacs--sort-mod-time-desc (f1 f2)
"Sort F1 and F2 by modification time descending."
(declare (side-effect-free t))
(inline-letevals (f1 f2)
(inline-quote (file-newer-than-file-p ,f1 ,f2))))