diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 43f4c230d14..ed583f6874e 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,3 +1,8 @@ +2007-09-07 Glenn Morris + + * erc.el (erc-toggle-debug-irc-protocol): Fix call to + erc-view-mode-enter. + 2007-08-08 Glenn Morris * erc-log.el, erc.el: Replace `iff' in doc-strings and comments. diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index c26bdf2a19f..2ebadd1a5d6 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -2228,7 +2228,7 @@ If ARG is non-nil, show the *erc-protocol* buffer." (interactive "P") (let* ((buf (get-buffer-create "*erc-protocol*"))) (with-current-buffer buf - (erc-view-mode-enter 1) + (erc-view-mode-enter) (when (null (current-local-map)) (let ((inhibit-read-only t)) (insert (erc-make-notice "This buffer displays all IRC protocol traffic exchanged with each server.\n"))