summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>1999-07-01 19:44:38 +0000
committerAndrew Innes <andrewi@gnu.org>1999-07-01 19:44:38 +0000
commit3945a18ace4501399b3b8f7ac3b44b531a0f7c8d (patch)
treea67df86b9e09118cee3fede94e7e0953dc4bb0de
parent97a1a46f05135a017ef3b54637493dbabc93d1f6 (diff)
downloademacs-3945a18ace4501399b3b8f7ac3b44b531a0f7c8d.tar.gz
(Man-build-man-command): Use value of null-device,
instead of hard-coding "/dev/null".
-rw-r--r--lisp/man.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el
index 90c27adbc29..27860b5c0a2 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -454,7 +454,7 @@ that string instead of from the current buffer."
; which do support stderr redirection.
(if (not (fboundp 'start-process))
" %s"
- " %s 2>/dev/null")))
+ (concat " %s 2>" null-device))))
(flist Man-filter-list))
(while (and flist (car flist))
(let ((pcom (car (car flist)))