]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-grep-dired): Call shell-quote-argument. Specify the -e option.
authorRichard M. Stallman <rms@gnu.org>
Sun, 3 Mar 2002 00:34:32 +0000 (00:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 3 Mar 2002 00:34:32 +0000 (00:34 +0000)
lisp/find-dired.el

index 0b21c3c637092edce16816dd39fdbece548254fd..68f076a8284f607b2ebeb7e5a3e14ee4782a3079 100644 (file)
@@ -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)