aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/xref.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index 69a11bb776b..dcaffa4bbfb 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -236,8 +236,9 @@ To create an xref object, call `xref-make'.")
236The result must be a list of xref objects. If no references can 236The result must be a list of xref objects. If no references can
237be found, return nil. 237be found, return nil.
238 238
239The default implementation performs a Grep symbol-search inside 239The default implementation uses `semantic-symref-tool-alist' to
240the current project." 240find a search tool; by default, this uses \"find | grep\" in the
241`project-current' roots."
241 (cl-mapcan 242 (cl-mapcan
242 (lambda (dir) 243 (lambda (dir)
243 (xref-collect-references identifier dir)) 244 (xref-collect-references identifier dir))