Function: treemacs-button-end--inliner
treemacs-button-end--inliner is a function defined in
treemacs-core-utils.el.
Signature
(treemacs-button-end--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-end--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 'next-single-property-change button
(list 'quote 'button))
(list 'point-max))))
(if
(eq button exp)
body
(macroexp-let*
(list
(list button exp))
body)))))