aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Leake2015-11-17 07:46:11 -0600
committerStephen Leake2015-11-17 07:49:29 -0600
commitce4eeca8d40edf95eeca05c76f4b474d38ea8d6d (patch)
treea74ca78fbef5d9ea1438dad2a81b8b8660c0a806
parent54beeef1180e5ff2adb6797b6b4572e71c882e95 (diff)
downloademacs-ce4eeca8d40edf95eeca05c76f4b474d38ea8d6d.tar.gz
emacs-ce4eeca8d40edf95eeca05c76f4b474d38ea8d6d.zip
Improve doc string
* lisp/progmodes/xref.el (xref-backend-references): Improve doc string.
-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))