aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/project.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 82059c91363..9c8a88c80fc 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -162,7 +162,7 @@ end it with `/'. DIR must be one of `project-roots' or
162DIRS is a list of absolute directories; it should be some 162DIRS is a list of absolute directories; it should be some
163subset of the project roots and external roots. 163subset of the project roots and external roots.
164 164
165The default implementation uses `grep-find-program'. PROJECT is used 165The default implementation uses `find-program'. PROJECT is used
166to find the list of ignores for each directory." 166to find the list of ignores for each directory."
167 ;; FIXME: Uniquely abbreviate the roots? 167 ;; FIXME: Uniquely abbreviate the roots?
168 (require 'xref) 168 (require 'xref)
@@ -171,7 +171,7 @@ to find the list of ignores for each directory."
171 (lambda (dir) 171 (lambda (dir)
172 (let ((command 172 (let ((command
173 (format "%s %s %s -type f -print0" 173 (format "%s %s %s -type f -print0"
174 grep-find-program 174 find-program
175 dir 175 dir
176 (xref--find-ignores-arguments 176 (xref--find-ignores-arguments
177 (project-ignores project dir) 177 (project-ignores project dir)