summaryrefslogtreecommitdiff
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-11-16 01:43:53 +0000
committerJim Blandy <jimb@redhat.com>1992-11-16 01:43:53 +0000
commitb441dd4fbb060a0235557d3a5784e11417a53286 (patch)
treedceb50dbf46fd94aa806f0744347334fca6de592 /lisp/terminal.el
parent9c7a8458cb046c30a58df8e0eacaa209c0dcff59 (diff)
downloademacs-b441dd4fbb060a0235557d3a5784e11417a53286.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.el2
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)