Function: treemacs--next-non-child-button--inliner
treemacs--next-non-child-button--inliner is a function defined in
treemacs-core-utils.el.
Signature
(treemacs--next-non-child-button--inliner INLINE--FORM BTN)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Closure converted to defun by helpful.
(defun treemacs--next-non-child-button--inliner
(inline--form btn)
(ignore inline--form)
(catch 'inline--just-use
(let*
((exp btn)
(btn
(if
(macroexp-copyable-p exp)
exp
(make-symbol "btn")))
(body
(list 'when btn
(list 'let
(list
(list 'depth
(list 'treemacs-button-get btn :depth))
(list 'next
(list 'next-button
(list 'treemacs-button-end btn)
t)))
(list 'while
(list 'and 'next
(list '< 'depth
(list 'treemacs-button-get 'next :depth)))
(list 'setq 'next
(list 'next-button
(list 'treemacs-button-end 'next)
t)))
'next))))
(if
(eq btn exp)
body
(macroexp-let*
(list
(list btn exp))
body)))))