1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-19 04:21:45 -07:00

project--find-regexp-in-files: Use 'grep -E'

* lisp/progmodes/project.el (project--find-regexp-in-files): Use
'grep -E' because we convert the regexp to extended already.
This commit is contained in:
Dmitry Gutov 2019-03-11 02:22:54 +02:00
parent de0dc6b8bf
commit 5aefaf4385

View file

@ -390,7 +390,7 @@ pattern to search for."
(status nil)
(hits nil)
(xrefs nil)
(command (format "xargs -0 grep %s -nHe %s"
(command (format "xargs -0 grep %s -nHE %s"
(if (and case-fold-search
(isearch-no-upper-case-p regexp t))
"-i"