1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(Info-summary): Handle any event when flushing the display.

This commit is contained in:
Richard M. Stallman 1993-03-06 06:15:39 +00:00
parent 8f90f59416
commit 1614c867a7

View File

@ -896,7 +896,7 @@ N is the digit argument used to invoke this command."
(while (progn (setq flag (not (pos-visible-in-window-p (point-max))))
(message (if flag "Type Space to see more"
"Type Space to return to Info"))
(if (/= ?\ (setq ch (read-char)))
(if (not (eq ?\ (setq ch (read-event))))
(progn (setq unread-command-events (list ch)) nil)
flag))
(scroll-up)))))