1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

* 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.
This commit is contained in:
Jim Blandy 1992-11-16 01:36:46 +00:00
parent 7d70f8c44e
commit efa6a4df9a

View file

@ -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)))))