projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e8e877
)
Fix `find-grep-dired' with default OpenBSD's Grep
author
Manuel Giraud
<manuel@ledu-giraud.fr>
Wed, 24 Apr 2024 14:10:43 +0000
(16:10 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 27 Apr 2024 09:31:41 +0000
(12:31 +0300)
* lisp/find-dired.el (find-grep-options): Use '-q' on
OpenBSD as well. (Bug#70550)
lisp/find-dired.el
patch
|
blob
|
history
diff --git
a/lisp/find-dired.el
b/lisp/find-dired.el
index 41581cc7900448dfa4a1af90394f20f77dbdada0..fa0c034c81615bdb2ae229e87900d17ba2a6503f 100644
(file)
--- a/
lisp/find-dired.el
+++ b/
lisp/find-dired.el
@@
-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.