diff options
| author | Glenn Morris | 2011-06-29 20:03:07 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-06-29 20:03:07 -0700 |
| commit | 1d9b46d4ccbf41f347e8595aa75d55c52731ed60 (patch) | |
| tree | ba428882ef1ae753000ce05bc513818741108b4c | |
| parent | 5cdea619b2b246aaac5e90014e4d80d3943b17fb (diff) | |
| download | emacs-1d9b46d4ccbf41f347e8595aa75d55c52731ed60.tar.gz emacs-1d9b46d4ccbf41f347e8595aa75d55c52731ed60.zip | |
* lisp/find-dired.el (find-grep-options): Simplify.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/find-dired.el | 3 |
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 @@ | |||
| 1 | 2011-06-30 Glenn Morris <rgm@gnu.org> | 1 | 2011-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. |
| 93 | On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. | 92 | On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. |