1
0
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:
Manuel Giraud 2024-04-24 16:10:43 +02:00 committed by Eli Zaretskii
parent 4e8e877c37
commit b761a38106

View File

@ -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.