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:
parent
de0dc6b8bf
commit
5aefaf4385
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue