Function: xref-file-location-column
xref-file-location-column is a byte-compiled function defined in
xref.el.gz.
Signature
(xref-file-location-column CL-X)
Documentation
Access slot "column" 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)