diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-06 06:13:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-06 06:13:50 +0000 |
commit | 0a98f67ff338bc7dc1364f72d03f6d9d3958a4b7 (patch) | |
tree | 90d9b069fae5308a3e74a9c62d61345b7b837bb8 /lisp/terminal.el | |
parent | 8330a77c79dabac21d0f762ba185543e92c44f8b (diff) | |
download | emacs-0a98f67ff338bc7dc1364f72d03f6d9d3958a4b7.tar.gz |
(te-escape-extended-command-unread): Handle any key sequence.
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 07e03ff9069..c27adcfdd52 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el @@ -223,7 +223,7 @@ Other chars following \"%s\" are interpreted as follows:\n" ;; not used. (defun te-escape-extended-command-unread () (interactive) - (setq unread-command-events (list last-input-char)) + (setq unread-command-events (listify-key-sequence (this-command-keys))) (te-escape-extended-command)) (defun te-set-escape-char (c) |