* lisp/progmodes/xref.el (xref-location-marker):
Always call 'find-file-noselect' rather than 'get-file-buffer' to
go through the visited-file-modtime verification every time.
(cherry picked from commit
a9e36fc3bf811853e152e7ff427a39272cff1a80)
(cl-defmethod xref-location-marker ((l xref-file-location))
(pcase-let (((cl-struct xref-file-location file line column) l))
(with-current-buffer
- (or (get-file-buffer file)
- (let ((find-file-suppress-same-file-warnings t))
- (find-file-noselect file)))
+ (let ((find-file-suppress-same-file-warnings t))
+ (find-file-noselect file))
(save-restriction
(widen)
(save-excursion