From: Juanma Barranquero Date: Thu, 14 Jun 2007 00:14:53 +0000 (+0000) Subject: (erc-scroll-to-bottom): Remove redundant check. X-Git-Tag: emacs-pretest-23.0.90~12290 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c2e5c9395fb9f6cfe31c48587fb3a99e5d95fe09;p=emacs.git (erc-scroll-to-bottom): Remove redundant check. --- diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 9ffbcbd5201..33206ab6cd9 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,3 +1,7 @@ +2007-06-14 Juanma Barranquero + + * erc-goodies.el (erc-scroll-to-bottom): Remove redundant check. + 2007-06-06 Juanma Barranquero * erc.el (erc-show-channel-key-p, erc-startup-file-list): diff --git a/lisp/erc/erc-goodies.el b/lisp/erc/erc-goodies.el index 933e6b34b52..6820f91628a 100644 --- a/lisp/erc/erc-goodies.el +++ b/lisp/erc/erc-goodies.el @@ -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