Function: xref-make-file-location
xref-make-file-location is a byte-compiled function defined in
xref.el.gz.
Signature
(xref-make-file-location FILE LINE COLUMN)
Documentation
Constructor for objects of type xref-file-location.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
;; FIXME: might be useful to have an optional "hint" i.e. a string to
;; search for in case the line number is slightly out of date.
(cl-defstruct (xref-file-location
(:constructor xref-make-file-location (file line column)))
"A file location is a file/line/column triple.
Line numbers start from 1 and columns from 0."
file line column)