summaryrefslogtreecommitdiff
path: root/lisp/kmacro.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-01-09 04:44:15 +0000
committerGlenn Morris <rgm@gnu.org>2009-01-09 04:44:15 +0000
commit8989a9203f73473569ddf83e505a846609def407 (patch)
tree2dcc35b588e98388ef66ef39157e9d17290df217 /lisp/kmacro.el
parenta4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (diff)
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r--lisp/kmacro.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el
index eab099fa03..d06e3c02e1 100644
--- a/lisp/kmacro.el
+++ b/lisp/kmacro.el
@@ -1196,7 +1196,7 @@ following additional answers: `insert', `insert-1', `replace', `replace-1',
(setq this-command 'ignore)
(setq this-command cmd)
(if (memq this-command '(self-insert-command digit-argument))
- (setq last-command-char (aref keys (1- (length keys)))))
+ (setq last-command-event (aref keys (1- (length keys)))))
(if keys
(setq kmacro-step-edit-new-macro (vconcat kmacro-step-edit-new-macro keys))))
(setq kmacro-step-edit-key-index next-index)))