aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-11-16 01:43:53 +0000
committerJim Blandy <[email protected]>1992-11-16 01:43:53 +0000
commit8f51771ee181bcfd5cd974ad4269967aa29f56c0 (patch)
treec369a0312c24ad1d744ea12666641cc23acf6c83 /lisp/terminal.el
parenteec38fabdd26966aa7dd857d4375fc8e54317d6e (diff)
* 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.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index 35d5022aaf..c1f30dda70 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)