Function: treemacs-button-start--inliner

treemacs-button-start--inliner is a function defined in treemacs-core-utils.el.

Signature

(treemacs-button-start--inliner INLINE--FORM BUTTON)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Closure converted to defun by helpful.
(defun treemacs-button-start--inliner
    (inline--form button)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp button)
	 (button
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "button")))
	 (body
	  (list 'or
		(list 'previous-single-property-change
		      (list '1+ button)
		      (list 'quote 'button))
		(list 'point-min))))
      (if
	  (eq button exp)
	  body
	(macroexp-let*
	 (list
	  (list button exp))
	 body)))))