# HG changeset patch # User Eli Zaretskii # Date 894296339 0 # Node ID ca6bab63bffd673a0a2e5b76f93d7339be88460a # Parent 6635a9f225a95c699099597c0ff4de90bc5ddf72 (follow-intercept-processes): When asynchronous subprocesses aren't supported, default to nil. diff -r 6635a9f225a9 -r ca6bab63bffd lisp/follow.el --- a/lisp/follow.el Mon May 04 15:32:44 1998 +0000 +++ b/lisp/follow.el Mon May 04 15:38:59 1998 +0000 @@ -318,7 +318,8 @@ :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)