summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-08 12:44:18 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-08 12:44:18 +0000
commit03b6cf414be66ac85e24054319a2e35ada63104d (patch)
tree3da800d8526f9532bd4b70baadd3cd26c48421bd /lisp
parent2fc91d5b509d1df27846fe11e78064ec595e0706 (diff)
downloademacs-03b6cf414be66ac85e24054319a2e35ada63104d.tar.gz
(comint-postoutput-scroll-to-bottom):
Walk the windows even if scroll is nil.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index a244aadf659..e83cd1bde15 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1194,7 +1194,7 @@ This function should be in the list `comint-output-filter-functions'."
(current (current-buffer))
(process (get-buffer-process current))
(scroll comint-scroll-to-bottom-on-output))
- (if (and process scroll (not (window-minibuffer-p selected)))
+ (if (and process (not (window-minibuffer-p selected)))
(walk-windows
(function (lambda (window)
(if (eq (window-buffer window) current)