Function: treemacs--sort-alphabetic-numeric-case-insensitive-asc--inliner
treemacs--sort-alphabetic-numeric-case-insensitive-asc--inliner is a
function defined in treemacs-rendering.el.
Signature
(treemacs--sort-alphabetic-numeric-case-insensitive-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 'string-version-lessp (list 'downcase f1)
(list 'downcase 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)]