diff options
author | Glenn Morris <rgm@gnu.org> | 2011-06-29 20:03:07 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-06-29 20:03:07 -0700 |
commit | 1d9b46d4ccbf41f347e8595aa75d55c52731ed60 (patch) | |
tree | ba428882ef1ae753000ce05bc513818741108b4c /lisp/find-dired.el | |
parent | 5cdea619b2b246aaac5e90014e4d80d3943b17fb (diff) | |
download | emacs-1d9b46d4ccbf41f347e8595aa75d55c52731ed60.tar.gz |
* lisp/find-dired.el (find-grep-options): Simplify.
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r-- | lisp/find-dired.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index a2b196dc029..491110bc898 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -86,8 +86,7 @@ them for `find-ls-option'." (defcustom find-grep-options (if (or (eq system-type 'berkeley-unix) - (string-match "solaris2" system-configuration) - (string-match "irix" system-configuration)) + (string-match "solaris2\\|irix" system-configuration)) "-s" "-q") "Option to grep to be as silent as possible. On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |