Function: xref-make-file-location--cmacro

xref-make-file-location--cmacro is a function defined in xref.el.gz.

Signature

(xref-make-file-location--cmacro _CL-WHOLE-ARG FILE LINE COLUMN)

Documentation

compiler-macro for inlining xref-make-file-location.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
;; Closure converted to defun by helpful.
(defun xref-make-file-location--cmacro
    (_cl-whole-arg file line column)
  "compiler-macro for inlining `xref-make-file-location'."
  (cl-block xref-make-file-location--cmacro
    (cl--defsubst-expand
     '(file line column)
     '(cl-block xref-make-file-location
	(record 'xref-file-location file line column))
     nil nil nil file line column)))