aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2009-01-09 04:27:03 +0000
committerGlenn Morris <[email protected]>2009-01-09 04:27:03 +0000
commit51bc9aff5ed6323b80d7c76f7e326a656f2f56b8 (patch)
tree6b7006aa0c8ccad234f7a1fcf797902f572b8e4b /lisp/erc
parented77e66cc6b3d73d6512f3b5015f8d80aa80f01f (diff)
(erc-input-message): Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/erc')
-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 bc11adc7f7..aeae366a1d 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,8 @@
+2009-01-09 Glenn Morris <[email protected]>
+
+ * erc.el (erc-input-message): Replace last-command-char with
+ last-command-event.
+
2009-01-08 Glenn Morris <[email protected]>
* erc.el (tabbar--local-hlf): Silence compiler.
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index a1762d84d9..756ecef14f 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -3708,7 +3708,7 @@ If FACE is non-nil, it will be used to propertize the prompt. If it is nil,
(let ((minibuffer-allow-text-properties t)
(read-map minibuffer-local-map))
(insert (read-from-minibuffer "Message: "
- (string last-command-char) read-map))
+ (string last-command-event) read-map))
(erc-send-current-line)))
(defvar erc-action-history-list ()