From efa6a4df9a7dba16eb75c508b0f565aeaa99bc54 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 16 Nov 1992 01:36:46 +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. * info.el (Info-summary): Same. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/info.el b/lisp/info.el index 353b928bf37..abda4427a0d 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -785,7 +785,7 @@ Completion is allowed, and the menu item point is on is the default." (message (if flag "Type Space to see more" "Type Space to return to Info")) (if (/= ?\ (setq ch (read-char))) - (progn (setq unread-command-char ch) nil) + (progn (setq unread-command-event ch) nil) flag)) (scroll-up)))))