From 35d56dcf9a346ae76de73ed2fac55949c802a28d Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 16 Nov 1992 01:28:14 +0000 Subject: [PATCH] * 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. * comint.el (comint-dynamic-list-completions): Same. --- lisp/comint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/comint.el b/lisp/comint.el index bf7aea518d8..94e5201cd9f 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1091,7 +1091,7 @@ it just adds completion characters to the end of the filename." (let ((ch (read-char))) (if (= ch ?\ ) (set-window-configuration conf) - (setq unread-command-char ch)))))))) + (setq unread-command-event ch)))))))) ;;; Converting process modes to use comint mode ;;; ===========================================================================