aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2007-09-07 04:38:47 +0000
committerGlenn Morris <[email protected]>2007-09-07 04:38:47 +0000
commit645e533aeef814161272d347f44f1f6e4aea6b8e (patch)
tree8fa5b022ae4c7eb5ebdf445a50483eb48604bf9c /lisp
parent7262075dc65aad14e9ed0158e084d89651d12095 (diff)
(erc-toggle-debug-irc-protocol): Fix call to erc-view-mode-enter.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/erc/ChangeLog5
-rw-r--r--lisp/erc/erc.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index 43f4c230d1..ed583f6874 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-07 Glenn Morris <[email protected]>
+
+ * erc.el (erc-toggle-debug-irc-protocol): Fix call to
+ erc-view-mode-enter.
+
2007-08-08 Glenn Morris <[email protected]>
* 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 c26bdf2a19..2ebadd1a5d 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"))