From 5882caa076de152efd544bf40d1c946ece77425f Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Fri, 7 Jun 2024 11:44:09 +0200 Subject: [PATCH] * lisp/progmodes/xref.el (xref-revert-buffer): Require 'bookmark' --- lisp/progmodes/xref.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index cb9cb1f28c9..2451fc323f1 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -1401,6 +1401,7 @@ this variable to an alist with the following key-value pairs: (defun xref-revert-buffer (&rest _) "Refresh the search results in the current buffer." (interactive nil xref--xref-buffer-mode) + (require 'bookmark) (let ((inhibit-read-only t) (buffer-undo-list t) (bookmark (bookmark-make-record-default t))) -- 2.39.5