diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:44:15 +0000 |
commit | 8989a9203f73473569ddf83e505a846609def407 (patch) | |
tree | 2dcc35b588e98388ef66ef39157e9d17290df217 /lisp/electric.el | |
parent | a4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (diff) | |
download | emacs-8989a9203f73473569ddf83e505a846609def407.tar.gz |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/electric.el')
-rw-r--r-- | lisp/electric.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/electric.el b/lisp/electric.el index ca6f3f921f3..498f1e4f138 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -65,7 +65,7 @@ (setq prompt-string nil) (setq prompt-string "->"))) (setq cmd (read-key-sequence prompt-string)) - (setq last-command-char (aref cmd (1- (length cmd))) + (setq last-command-event (aref cmd (1- (length cmd))) this-command (key-binding cmd t) cmd this-command) ;; This makes universal-argument-other-key work. |