Function: xref-elisp-location-symbol--inliner
xref-elisp-location-symbol--inliner is a function defined in
elisp-mode.el.gz.
Signature
(xref-elisp-location-symbol--inliner INLINE--FORM X)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
;; 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 'xref-elisp-location-p x)
(list 'signal
(list 'quote 'wrong-type-argument)
(list 'list
(list 'quote 'xref-elisp-location)
x)))
(list 'aref x 1))))
(if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
(cl-struct-xref-elisp-location-tags)]