diff options
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 4f463b1dd85..5ed08baab28 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -768,7 +768,7 @@ N is the digit argument used to invoke this command." (message (if flag "Type Space to see more" "Type Space to return to Info")) (if (/= ?\ (setq ch (read-char))) - (progn (setq unread-command-event ch) nil) + (progn (setq unread-command-events (list ch)) nil) flag)) (scroll-up))))) |