]> git.eshelyaron.com Git - emacs.git/commitdiff
; Update a comment accordingly
authorDmitry Gutov <dmitry@gutov.dev>
Thu, 3 Oct 2024 19:07:58 +0000 (22:07 +0300)
committerEshel Yaron <me@eshelyaron.com>
Fri, 4 Oct 2024 10:11:34 +0000 (12:11 +0200)
(cherry picked from commit 4d43fbe3f5782f2efe3b325df87b65da026ef212)

lisp/progmodes/xref.el

index c08915986059a1acfe9aa896561572195be30031..42a6befc907e23c461683d367161a31bc9cb7013 100644 (file)
@@ -157,10 +157,10 @@ Line numbers start from 1 and columns from 0."
         (save-excursion
           (goto-char (point-min))
           (ignore-errors
-            ;; xref location may be out of date; it may be past the
-            ;; end of the current file, or the file may have been
-            ;; deleted. Return a reasonable location; the user will
-            ;; figure it out.
+            ;; The location shouldn't be be out of date, but we make
+            ;; provision for that anyway; in case it's past the end of
+            ;; the file, or it had been deleted. Then return an
+            ;; approximation, the user will figure it out.
             (beginning-of-line line)
             (forward-char column))
           (point-marker))))))