(erc-scroll-to-bottom): Remove redundant check.

This commit is contained in:
Juanma Barranquero 2007-06-14 00:14:53 +00:00
parent 2dde79d898
commit c2e5c9395f
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-06-14 Juanma Barranquero <lekktu@gmail.com>
* erc-goodies.el (erc-scroll-to-bottom): Remove redundant check.
2007-06-06 Juanma Barranquero <lekktu@gmail.com>
* erc.el (erc-show-channel-key-p, erc-startup-file-list):

View file

@ -77,7 +77,7 @@ You can control which line is recentered to by customizing the
variable `erc-input-line-position'.
DISPLAY-START is ignored."
(if (and window (window-live-p window))
(if (window-live-p window)
;; Temporarily bind resize-mini-windows to nil so that users who have it
;; set to a non-nil value will not suffer from premature minibuffer
;; shrinkage due to the below recenter call. I have no idea why this