From: Eli Zaretskii Date: Mon, 4 May 1998 15:38:59 +0000 (+0000) Subject: (follow-intercept-processes): When asynchronous X-Git-Tag: emacs-20.3~1140 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=07e464ab327ef6847b1947eb2cf80e24a0cf1961;p=emacs.git (follow-intercept-processes): When asynchronous subprocesses aren't supported, default to nil. --- diff --git a/lisp/follow.el b/lisp/follow.el index a3f1ec782dd..2d818708c63 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -318,7 +318,8 @@ After that, changing the prefix key requires manipulating keymaps." :type 'string :group 'follow) -(defcustom follow-intercept-processes t +(defcustom follow-intercept-processes + (fboundp 'start-process) "*When non-nil, Follow Mode will monitor process output." :type 'boolean :group 'follow)