changeset 4949:4b50104fbdec

(comint-postoutput-scroll-to-bottom): Don't treat minibuffer window specially.
author Richard M. Stallman <rms@gnu.org>
date Wed, 10 Nov 1993 07:10:58 +0000
parents 7653c78ac0c1
children 145c69e39666
files lisp/comint.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/comint.el	Wed Nov 10 06:10:27 1993 +0000
+++ b/lisp/comint.el	Wed Nov 10 07:10:58 1993 +0000
@@ -1191,7 +1191,7 @@
 	 (current (current-buffer))
 	 (process (get-buffer-process current))
 	 (scroll comint-scroll-to-bottom-on-output))
-    (if (and process (not (window-minibuffer-p selected)))
+    (if process
 	(walk-windows
 	 (function (lambda (window)
 	   (if (eq (window-buffer window) current)
@@ -1214,7 +1214,7 @@
 		       (goto-char (point-max))
 		       (recenter -1)))
 		 (select-window selected)))))
-	 'not-minibuf t))))
+	 nil t))))
 
 (defun comint-show-maximum-output ()
   "Put the end of the buffer at the bottom of the window."