diff options
author | Jim Blandy <jimb@redhat.com> | 1992-11-16 01:43:53 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-11-16 01:43:53 +0000 |
commit | 8f51771ee181bcfd5cd974ad4269967aa29f56c0 (patch) | |
tree | c369a0312c24ad1d744ea12666641cc23acf6c83 /lisp/terminal.el | |
parent | eec38fabdd26966aa7dd857d4375fc8e54317d6e (diff) | |
download | emacs-8f51771ee181bcfd5cd974ad4269967aa29f56c0.tar.gz |
* bytecomp.el: Declare unread-command-char an obsolete variable.
* vip.el (vip-escape-to-emacs, vip-prefix-arg-value,
vip-prefix-arg-com): Use unread-command-event instead of
unread-command-char; respect its new semantics.
* terminal.el (te-escape-extended-command-unread): Same.
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 35d5022aaf6..c1f30dda707 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-char last-input-char) + (setq unread-command-event last-input-char) (te-escape-extended-command)) (defun te-set-escape-char (c) |