aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-11-16 01:43:53 +0000
committerJim Blandy1992-11-16 01:43:53 +0000
commit8f51771ee181bcfd5cd974ad4269967aa29f56c0 (patch)
treec369a0312c24ad1d744ea12666641cc23acf6c83
parenteec38fabdd26966aa7dd857d4375fc8e54317d6e (diff)
downloademacs-8f51771ee181bcfd5cd974ad4269967aa29f56c0.tar.gz
emacs-8f51771ee181bcfd5cd974ad4269967aa29f56c0.zip
* 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.
-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"
223;; not used. 223;; not used.
224(defun te-escape-extended-command-unread () 224(defun te-escape-extended-command-unread ()
225 (interactive) 225 (interactive)
226 (setq unread-command-char last-input-char) 226 (setq unread-command-event last-input-char)
227 (te-escape-extended-command)) 227 (te-escape-extended-command))
228 228
229(defun te-set-escape-char (c) 229(defun te-set-escape-char (c)