From 619d300d4dfd46d180d7a019cd06f76686141a85 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Tue, 6 Feb 2024 08:47:57 +0100 Subject: [PATCH] ; Fix quoting in 'xref-show-definitions-completing-read' * lisp/progmodes/xref.el (xref-show-definitions-buffer-at-bottom): Use a backquote. --- lisp/progmodes/xref.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index c4364a8b464..29afb5e83f8 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -1415,7 +1415,7 @@ between them by typing in the minibuffer with completion." (ctable (completion-table-with-metadata collection - '((category . xref-location) + `((category . xref-location) (group-function . ,#'xref--completing-read-group)))) (def (caar collection))) (cdr (assoc (completing-read "Choose definition: " -- 2.39.5