Mercurial > emacs
changeset 81395:2609da54cd7f
(erc-scroll-to-bottom): Remove redundant check.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 14 Jun 2007 00:14:07 +0000 |
parents | 539d8fbbd824 |
children | 8b961315968d |
files | lisp/erc/erc-goodies.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/erc/erc-goodies.el Thu Jun 14 00:13:11 2007 +0000 +++ b/lisp/erc/erc-goodies.el Thu Jun 14 00:14:07 2007 +0000 @@ -77,7 +77,7 @@ 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