diff options
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index bfdc0ff4a13..3dd87d65617 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2539,7 +2539,8 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there." (or (eq event exit-char) (eq event (event-convert-list exit-char)) (setq unread-command-events - (append (this-single-command-raw-keys)))))) + (append (this-single-command-raw-keys) + unread-command-events))))) (delete-overlay ol)))) |