Mercurial > emacs
changeset 37250:2f0cd80341f8
(grep-compute-defaults): Use null-device
instead of literal /dev/null. Reported by Jens Schmidt
<schmidt@mathematik.uni-kl.de>.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 06 Apr 2001 14:42:15 +0000 |
parents | 61f9346a42a6 |
children | 640cc3a90118 |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Fri Apr 06 13:36:54 2001 +0000 +++ b/lisp/progmodes/compile.el Fri Apr 06 14:42:15 2001 +0000 @@ -587,8 +587,8 @@ grep-command)) (grep-find-use-xargs (format "find . -type f -print | xargs %s" grep-command)) - (t (cons (format "find . -type f -exec %s {} /dev/null \\;" - grep-command) + (t (cons (format "find . -type f -exec %s {} %s \\;" + grep-command null-device) (+ 22 (length grep-command))))))) ;;;###autoload