aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-06-29 20:03:07 -0700
committerGlenn Morris2011-06-29 20:03:07 -0700
commit1d9b46d4ccbf41f347e8595aa75d55c52731ed60 (patch)
treeba428882ef1ae753000ce05bc513818741108b4c
parent5cdea619b2b246aaac5e90014e4d80d3943b17fb (diff)
downloademacs-1d9b46d4ccbf41f347e8595aa75d55c52731ed60.tar.gz
emacs-1d9b46d4ccbf41f347e8595aa75d55c52731ed60.zip
* lisp/find-dired.el (find-grep-options): Simplify.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/find-dired.el3
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 043e12e32e4..96f3b03406a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-06-30 Glenn Morris <rgm@gnu.org> 12011-06-30 Glenn Morris <rgm@gnu.org>
2 2
3 * find-dired.el (find-grep-options): Simplify.
4
3 * term/ns-win.el (ns-set-resource): Declare. 5 * term/ns-win.el (ns-set-resource): Declare.
4 6
5 * ses.el (row, col): Declare dynamic variables honestly. 7 * ses.el (row, col): Declare dynamic variables honestly.
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'."
86 86
87(defcustom find-grep-options 87(defcustom find-grep-options
88 (if (or (eq system-type 'berkeley-unix) 88 (if (or (eq system-type 'berkeley-unix)
89 (string-match "solaris2" system-configuration) 89 (string-match "solaris2\\|irix" system-configuration))
90 (string-match "irix" system-configuration))
91 "-s" "-q") 90 "-s" "-q")
92 "Option to grep to be as silent as possible. 91 "Option to grep to be as silent as possible.
93On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. 92On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.