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 | 383aee86216dfa30202f761f779b8744c0d19606 (patch) | |
tree | 04ab4e417fc2d54b50ad303bcbbfc8d598a0dc5c /lisp/terminal.el | |
parent | bfd72d065f00149129866d90a774f0e58d64f6d5 (diff) | |
download | emacs-383aee86216dfa30202f761f779b8744c0d19606.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) |