diff options
author | Eli Zaretskii <eliz@gnu.org> | 1998-05-04 15:38:59 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 1998-05-04 15:38:59 +0000 |
commit | 07e464ab327ef6847b1947eb2cf80e24a0cf1961 (patch) | |
tree | b53f680eab77e8412f0ca6759baee7b83e7040eb /lisp/follow.el | |
parent | 229ba775d49f74c1144b583e1de6aef66f9fefdd (diff) | |
download | emacs-07e464ab327ef6847b1947eb2cf80e24a0cf1961.tar.gz |
(follow-intercept-processes): When asynchronous
subprocesses aren't supported, default to nil.
Diffstat (limited to 'lisp/follow.el')
-rw-r--r-- | lisp/follow.el | 3 |
1 files changed, 2 insertions, 1 deletions
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) |