diff options
| author | David Kastrup | 2015-07-25 18:54:42 +0200 |
|---|---|---|
| committer | David Kastrup | 2015-08-04 14:34:15 +0200 |
| commit | 5022e27dac4c13651941e425dbec5b3a2cecdae4 (patch) | |
| tree | 696d748c8abc3aea1bfd5305a8e71dc985053496 /lisp/vc | |
| parent | 227e996946d4629fa8f6d665564a37668290c87f (diff) | |
| download | emacs-5022e27dac4c13651941e425dbec5b3a2cecdae4.tar.gz emacs-5022e27dac4c13651941e425dbec5b3a2cecdae4.zip | |
; Do not overwrite preexisting contents of unread-command-events
Diffstat (limited to 'lisp/vc')
| -rw-r--r-- | lisp/vc/emerge.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/emerge.el b/lisp/vc/emerge.el index b17d11d34a4..de25cbafb0d 100644 --- a/lisp/vc/emerge.el +++ b/lisp/vc/emerge.el | |||
| @@ -3089,7 +3089,7 @@ SPC, it is ignored; if it is anything else, it is processed as a command." | |||
| 3089 | (let* ((echo-keystrokes 0) | 3089 | (let* ((echo-keystrokes 0) |
| 3090 | (c (read-event))) | 3090 | (c (read-event))) |
| 3091 | (if (not (eq c 32)) | 3091 | (if (not (eq c 32)) |
| 3092 | (setq unread-command-events (list c))))) | 3092 | (push c unread-command-events)))) |
| 3093 | (erase-buffer))))) | 3093 | (erase-buffer))))) |
| 3094 | 3094 | ||
| 3095 | ;; Improved auto-save file names. | 3095 | ;; Improved auto-save file names. |