From: Andrew Innes Date: Thu, 1 Jul 1999 19:44:38 +0000 (+0000) Subject: (Man-build-man-command): Use value of null-device, X-Git-Tag: emacs-20.4~35 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3945a18ace4501399b3b8f7ac3b44b531a0f7c8d;p=emacs.git (Man-build-man-command): Use value of null-device, instead of hard-coding "/dev/null". --- 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)))