(grep-compute-defaults): Use null-device
instead of literal /dev/null. Reported by Jens Schmidt <schmidt@mathematik.uni-kl.de>.
This commit is contained in:
parent
e02160a302
commit
ec321d7767
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
2001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* progmodes/compile.el (grep-compute-defaults): Use null-device
|
||||
instead of literal /dev/null. Reported by Jens Schmidt
|
||||
<schmidt@mathematik.uni-kl.de>.
|
||||
|
||||
* simple.el (normal-erase-is-backspace-mode): Doc fix.
|
||||
|
||||
2001-04-06 Dave Love <fx@gnu.org>
|
||||
|
|
|
@ -587,8 +587,8 @@ to a function that generates a unique name."
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue