Function: treemacs--sort-alphabetic-numeric-desc--inliner

treemacs--sort-alphabetic-numeric-desc--inliner is a function defined in treemacs-rendering.el.

Signature

(treemacs--sort-alphabetic-numeric-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-numeric-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-version-lessp 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)))))