Function: xref--goto-location

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

Signature

(xref--goto-location LOCATION)

Documentation

Set buffer and point according to xref-location LOCATION.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defun xref--goto-location (location)
  "Set buffer and point according to `xref-location' LOCATION."
  (let ((marker (xref-location-marker location)))
    (set-buffer (marker-buffer marker))
    (xref--goto-char marker)))