mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
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
@ -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…
Reference in New Issue
Block a user