aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/compile.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4bb2171c17c..4a3c3204d7c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12001-04-06 Eli Zaretskii <eliz@is.elta.co.il> 12001-04-06 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * progmodes/compile.el (grep-compute-defaults): Use null-device
4 instead of literal /dev/null. Reported by Jens Schmidt
5 <schmidt@mathematik.uni-kl.de>.
6
3 * simple.el (normal-erase-is-backspace-mode): Doc fix. 7 * simple.el (normal-erase-is-backspace-mode): Doc fix.
4 8
52001-04-06 Dave Love <fx@gnu.org> 92001-04-06 Dave Love <fx@gnu.org>
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 7bb976d1656..71978477ee3 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -587,8 +587,8 @@ to a function that generates a unique name."
587 grep-command)) 587 grep-command))
588 (grep-find-use-xargs 588 (grep-find-use-xargs
589 (format "find . -type f -print | xargs %s" grep-command)) 589 (format "find . -type f -print | xargs %s" grep-command))
590 (t (cons (format "find . -type f -exec %s {} /dev/null \\;" 590 (t (cons (format "find . -type f -exec %s {} %s \\;"
591 grep-command) 591 grep-command null-device)
592 (+ 22 (length grep-command))))))) 592 (+ 22 (length grep-command)))))))
593 593
594;;;###autoload 594;;;###autoload