diff options
author | David Kastrup <dak@gnu.org> | 2015-07-25 18:54:42 +0200 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2015-08-04 14:34:15 +0200 |
commit | 5022e27dac4c13651941e425dbec5b3a2cecdae4 (patch) | |
tree | 696d748c8abc3aea1bfd5305a8e71dc985053496 /lisp/pcomplete.el | |
parent | 227e996946d4629fa8f6d665564a37668290c87f (diff) | |
download | emacs-5022e27dac4c13651941e425dbec5b3a2cecdae4.tar.gz |
; Do not overwrite preexisting contents of unread-command-events
Diffstat (limited to 'lisp/pcomplete.el')
-rw-r--r-- | lisp/pcomplete.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index 7bcf2c1759e..90f06953183 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el @@ -1112,7 +1112,7 @@ Typing SPC flushes the help buffer." (scroll-up)))) (message "")) (t - (setq unread-command-events (list event)) + (push event unread-command-events) (throw 'done nil))))) (if (and pcomplete-last-window-config pcomplete-restore-window-delay) |