Function: treemacs--sort-alphabetic-case-insensitive-desc--inliner
treemacs--sort-alphabetic-case-insensitive-desc--inliner is a function
defined in treemacs-rendering.el.
Signature
(treemacs--sort-alphabetic-case-insensitive-desc--inliner INLINE--FORM F1 F2)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-rendering.el
;; Closure converted to defun by helpful.
(defun treemacs--sort-alphabetic-case-insensitive-desc--inliner
(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-lessp
(list 'downcase f2)
(list 'downcase 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)))))