changeset 70712:070ab453b31f

(grep-find): Don't check grep-find-command before running command (breaks non-interactive usage).
author Kim F. Storm <storm@cua.dk>
date Thu, 18 May 2006 14:39:09 +0000
parents 0d2a5e956575
children 2b8661046f9e
files lisp/progmodes/grep.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/grep.el	Thu May 18 14:38:57 2006 +0000
+++ b/lisp/progmodes/grep.el	Thu May 18 14:39:09 2006 +0000
@@ -553,7 +553,7 @@
        (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))))