Function: erc--scrolltobottom-on-post-command
erc--scrolltobottom-on-post-command is a byte-compiled function
defined in erc-goodies.el.gz.
Signature
(erc--scrolltobottom-on-post-command)
Documentation
Scroll selected window unless this-command is exempted.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(defun erc--scrolltobottom-on-post-command ()
"Scroll selected window unless `this-command' is exempted."
(when (eq (selected-window) (get-buffer-window))
(unless (memq this-command erc--scrolltobottom-post-ignore-commands)
(setq erc--scrolltobottom-window-info nil)
(erc--scrolltobottom-confirm))))