diff lisp/follow.el @ 21937:ca6bab63bffd

(follow-intercept-processes): When asynchronous subprocesses aren't supported, default to nil.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 04 May 1998 15:38:59 +0000
parents a6119c0748e9
children a77d473867b8
line wrap: on
line diff
--- 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)