Function: treemacs--prefix-arg-to-recurse-depth--inliner
treemacs--prefix-arg-to-recurse-depth--inliner is a function defined
in treemacs-core-utils.el.
Signature
(treemacs--prefix-arg-to-recurse-depth--inliner INLINE--FORM ARG)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Closure converted to defun by helpful.
(defun treemacs--prefix-arg-to-recurse-depth--inliner
(inline--form arg)
(ignore inline--form)
(catch 'inline--just-use
(let*
((exp arg)
(arg
(if
(macroexp-copyable-p exp)
exp
(make-symbol "arg")))
(body
(list 'cond
(list
(list 'null arg)
0)
(list
(list 'integerp arg)
arg)
(list t 999))))
(if
(eq arg exp)
body
(macroexp-let*
(list
(list arg exp))
body)))))