diff options
| -rw-r--r-- | lisp/progmodes/xref.el | 5 |
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'.") | |||
| 236 | The result must be a list of xref objects. If no references can | 236 | The result must be a list of xref objects. If no references can |
| 237 | be found, return nil. | 237 | be found, return nil. |
| 238 | 238 | ||
| 239 | The default implementation performs a Grep symbol-search inside | 239 | The default implementation uses `semantic-symref-tool-alist' to |
| 240 | the current project." | 240 | find 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)) |