Function: treemacs-scope-shelf->buffer--inliner

treemacs-scope-shelf->buffer--inliner is a function defined in treemacs-scope.el.

Signature

(treemacs-scope-shelf->buffer--inliner INLINE--FORM X)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-scope.el
;; Could not find source code, showing raw function object.
#[(inline--form x)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp x)
	  (x (if (macroexp-copyable-p exp) exp (make-symbol "x")))
	  (body
	   (list 'progn
		 (list 'or (list 'treemacs-scope-shelf-p x)
		       (list 'signal
			     (list 'quote 'wrong-type-argument)
			     (list 'list
				   (list 'quote 'treemacs-scope-shelf)
				   x)))
		 (list 'aref x 1))))
       (if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
  (cl-struct-treemacs-scope-shelf-tags)]