Function: python-comint-postoutput-scroll-to-bottom
python-comint-postoutput-scroll-to-bottom is a byte-compiled function
defined in python.el.gz.
This function is obsolete since 29.1.
Signature
(python-comint-postoutput-scroll-to-bottom OUTPUT)
Documentation
Faster version of comint-postoutput-scroll-to-bottom.
Avoids recenter calls until OUTPUT is completely sent.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-comint-postoutput-scroll-to-bottom (output)
"Faster version of `comint-postoutput-scroll-to-bottom'.
Avoids `recenter' calls until OUTPUT is completely sent."
(declare (obsolete nil "29.1")) ; Not used.
(when (and (not (string= "" output))
(python-shell-comint-end-of-output-p
(ansi-color-filter-apply output)))
(comint-postoutput-scroll-to-bottom output))
output)