# HG changeset patch # User Juanma Barranquero # Date 1181780047 0 # Node ID 2609da54cd7f00070e3d43f3812ca216360c8d8c # Parent 539d8fbbd824bb40a44371d60c137eea3283440a (erc-scroll-to-bottom): Remove redundant check. diff -r 539d8fbbd824 -r 2609da54cd7f lisp/erc/erc-goodies.el --- 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