aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/find-dired.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-03-03 00:34:32 +0000
committerRichard M. Stallman <[email protected]>2002-03-03 00:34:32 +0000
commita086a7fefda190820c5640c6c81c441371c7b4ff (patch)
treeba0823d29dae23f34c124537d5eaea508da49569 /lisp/find-dired.el
parentf40f9848b640d51d35bde015fd194d80d66802ce (diff)
(find-grep-dired): Call shell-quote-argument. Specify the -e option.
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r--lisp/find-dired.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el
index 0b21c3c637..68f076a828 100644
--- a/lisp/find-dired.el
+++ b/lisp/find-dired.el
@@ -183,7 +183,8 @@ Thus ARG can also contain additional grep options."
;; by FIFOs and devices. I'm not sure what's best to do
;; about symlinks, so as far as I know this is not wrong.
(find-dired dir
- (concat "-type f -exec grep " find-grep-options " "
+ (concat "-type f -exec grep " find-grep-options " -e "
+ (shell-quote-argument args)
args " {} \\\; ")))
(defun find-dired-filter (proc string)