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/language | |
| parent | 227e996946d4629fa8f6d665564a37668290c87f (diff) | |
| download | emacs-5022e27dac4c13651941e425dbec5b3a2cecdae4.tar.gz emacs-5022e27dac4c13651941e425dbec5b3a2cecdae4.zip | |
; Do not overwrite preexisting contents of unread-command-events
Diffstat (limited to 'lisp/language')
| -rw-r--r-- | lisp/language/hanja-util.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/language/hanja-util.el b/lisp/language/hanja-util.el index 8b62ee707f3..c9501d2ef8f 100644 --- a/lisp/language/hanja-util.el +++ b/lisp/language/hanja-util.el | |||
| @@ -6585,7 +6585,9 @@ The value is a hanja character that is selected interactively." | |||
| 6585 | (cmd (lookup-key hanja-keymap seq))) | 6585 | (cmd (lookup-key hanja-keymap seq))) |
| 6586 | (if (functionp cmd) | 6586 | (if (functionp cmd) |
| 6587 | (funcall cmd) | 6587 | (funcall cmd) |
| 6588 | (setq unread-command-events (listify-key-sequence seq)) | 6588 | (setq unread-command-events |
| 6589 | (nconc (listify-key-sequence seq) | ||
| 6590 | unread-command-events)) | ||
| 6589 | (throw 'exit-input-loop nil)))))) | 6591 | (throw 'exit-input-loop nil)))))) |
| 6590 | (setq hanja-conversions nil)))) | 6592 | (setq hanja-conversions nil)))) |
| 6591 | 6593 | ||