Function: xref-file-location-file

xref-file-location-file is a byte-compiled function defined in xref.el.gz.

Signature

(xref-file-location-file CL-X)

Documentation

Access slot "file" of xref-file-location struct CL-X.

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)