From: Kim F. Storm Date: Thu, 18 May 2006 14:39:09 +0000 (+0000) Subject: (grep-find): Don't check grep-find-command X-Git-Tag: emacs-pretest-22.0.90~2515 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a34f7eb16500950ad2d328c7718268f4e54f4966;p=emacs.git (grep-find): Don't check grep-find-command before running command (breaks non-interactive usage). --- diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 410a973d1b4..d207094cafe 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -553,7 +553,7 @@ easily repeat a find command." (read-string "compile.el: No `grep-find-command' command available. Press RET.") (list nil)))) - (when (and grep-find-command command-args) + (when command-args (let ((null-device nil)) ; see grep (grep command-args))))