Function: xref-file-location-file--cmacro
xref-file-location-file--cmacro is a function defined in xref.el.gz.
Signature
(xref-file-location-file--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining xref-file-location-file.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
;; Closure converted to defun by helpful.
(defun xref-file-location-file--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `xref-file-location-file'."
(cl-block xref-file-location-file--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block xref-file-location-file
(progn
(or
(xref-file-location-p cl-x)
(signal 'wrong-type-argument
(list 'xref-file-location cl-x)))
(aref cl-x 1)))
nil nil nil cl-x)))