# HG changeset patch # User Richard M. Stallman # Date 752915458 0 # Node ID 4b50104fbdec51ecd09f41c93b628edaca488e49 # Parent 7653c78ac0c16d9674da3171836ff73aad7ace52 (comint-postoutput-scroll-to-bottom): Don't treat minibuffer window specially. diff -r 7653c78ac0c1 -r 4b50104fbdec lisp/comint.el --- 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."