Function: treemacs--compare-markdown-tag-paths--inliner

treemacs--compare-markdown-tag-paths--inliner is a function defined in treemacs-tag-follow-mode.el.

Signature

(treemacs--compare-markdown-tag-paths--inliner INLINE--FORM P1 P2)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-tag-follow-mode.el
;; Closure converted to defun by helpful.
(defun treemacs--compare-markdown-tag-paths--inliner
    (inline--form p1 p2)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp p1)
	 (p1
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "p1")))
	 (body
	  (let*
	      ((exp p2)
	       (p2
		(if
		    (macroexp-copyable-p exp)
		    exp
		  (make-symbol "p2")))
	       (body
		(list '<
		      (list 'cdar p1)
		      (list 'cdar p2))))
	    (if
		(eq p2 exp)
		body
	      (macroexp-let*
	       (list
		(list p2 exp))
	       body)))))
      (if
	  (eq p1 exp)
	  body
	(macroexp-let*
	 (list
	  (list p1 exp))
	 body)))))