]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-postoutput-scroll-to-bottom):
authorRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 07:10:58 +0000 (07:10 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 10 Nov 1993 07:10:58 +0000 (07:10 +0000)
Don't treat minibuffer window specially.

lisp/comint.el

index dd0e61559fa473b5652bd78d3f4f32d22159a391..d1f025afaaa2504156f0508e92fd13e5e7d5734e 100644 (file)
@@ -1191,7 +1191,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 (not (window-minibuffer-p selected)))
+    (if process
        (walk-windows
         (function (lambda (window)
           (if (eq (window-buffer window) current)
@@ -1214,7 +1214,7 @@ This function should be in the list `comint-output-filter-functions'."
                       (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."