* lisp/progmodes/project.el (project-file-completion-table): Use
'grep-find-program', rather than the obsolete 'find-program'.
DIRS is a list of absolute directories; it should be some
subset of the project roots and external roots.
-The default implementation uses `find-program'. PROJECT is used
+The default implementation uses `grep-find-program'. PROJECT is used
to find the list of ignores for each directory."
;; FIXME: Uniquely abbreviate the roots?
(require 'xref)
(lambda (dir)
(let ((command
(format "%s %s %s -type f -print0"
- find-program
+ grep-find-program
dir
(xref--find-ignores-arguments
(project-ignores project dir)