Fix `find-grep-dired' with default OpenBSD's Grep
* lisp/find-dired.el (find-grep-options): Use '-q' on OpenBSD as well. (Bug#70550)
This commit is contained in:
parent
4e8e877c37
commit
b761a38106
1 changed files with 2 additions and 1 deletions
|
@ -120,7 +120,8 @@ them for `find-ls-option'."
|
|||
:group 'find-dired)
|
||||
|
||||
(defcustom find-grep-options
|
||||
(if (or (eq system-type 'berkeley-unix)
|
||||
(if (or (and (eq system-type 'berkeley-unix)
|
||||
(not (string-match "openbsd" system-configuration)))
|
||||
(string-match "solaris2" system-configuration))
|
||||
"-s" "-q")
|
||||
"Option to grep to be as silent as possible.
|
||||
|
|
Loading…
Add table
Reference in a new issue