* lisp/progmodes/project.el (project-find-regexp): Don't pass
project's ignores to project--files-in-directory. The FILES glob
should be enough, and we don't want to prohibit searching inside
ignored directories this way (it can be counter-intuitive).
(let ((dir (read-directory-name "Base directory: "
nil default-directory t)))
(project--files-in-directory dir
- (project--dir-ignores pr dir)
+ nil
(grep-read-files regexp))))))
(project--find-regexp-in-files regexp files)))