diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-06-14 00:14:53 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-06-14 00:14:53 +0000 |
commit | c2e5c9395fb9f6cfe31c48587fb3a99e5d95fe09 (patch) | |
tree | ad8d90b0e5c4640975d3f517893f4a393e780297 /lisp/erc | |
parent | 2dde79d898037f3d48f73ce10bd17d827b2a9961 (diff) | |
download | emacs-c2e5c9395fb9f6cfe31c48587fb3a99e5d95fe09.tar.gz |
(erc-scroll-to-bottom): Remove redundant check.
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/erc/erc-goodies.el | 2 |
2 files changed, 5 insertions, 1 deletions
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 <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): 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 |