1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(grep-find): Don't check grep-find-command

before running command (breaks non-interactive usage).
This commit is contained in:
Kim F. Storm 2006-05-18 14:39:09 +00:00
parent a0fa505b41
commit a34f7eb165

View file

@ -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))))