aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/xref.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index de9dccf3a59..b972bf28a78 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -509,6 +509,7 @@ meantime are preserved."
509XREF-ALIST is of the form ((GROUP . (XREF ...)) ...). Where 509XREF-ALIST is of the form ((GROUP . (XREF ...)) ...). Where
510GROUP is a string for decoration purposes and XREF is an 510GROUP is a string for decoration purposes and XREF is an
511`xref--xref' object." 511`xref--xref' object."
512 (require 'compile) ;; For the compilation-info face.
512 (cl-loop for ((group . xrefs) . more1) on xref-alist do 513 (cl-loop for ((group . xrefs) . more1) on xref-alist do
513 (xref--insert-propertized '(face compilation-info) group "\n") 514 (xref--insert-propertized '(face compilation-info) group "\n")
514 (cl-loop for (xref . more2) on xrefs do 515 (cl-loop for (xref . more2) on xrefs do