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/terminal.el | |
parent | a4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (diff) | |
download | emacs-8989a9203f73473569ddf83e505a846609def407.tar.gz |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r-- | lisp/terminal.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el index 8b550c022a5..d79ea1a47ef 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el @@ -225,7 +225,7 @@ performance." ;; you hit esc key... ((and (stringp s) (string= s (make-string 1 terminal-escape-char))) - (setq last-command-char terminal-escape-char) + (setq last-command-event terminal-escape-char) (let ((terminal-escape-char -259)) (te-pass-through))) |