From a086a7fefda190820c5640c6c81c441371c7b4ff Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 3 Mar 2002 00:34:32 +0000 Subject: [PATCH] (find-grep-dired): Call shell-quote-argument. Specify the -e option. --- lisp/find-dired.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 0b21c3c6370..68f076a8284 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) -- 2.39.5