aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2006-02-27 00:56:27 +0000
committerKenichi Handa2006-02-27 00:56:27 +0000
commitda6c2ece1bd8201a9aa89fdd034aebf9609a0ea1 (patch)
tree19a727d9560bbd94c5182cad474da499a722cf9b
parent476e47cabac35f1724d3be437c07e97ca00a399a (diff)
downloademacs-da6c2ece1bd8201a9aa89fdd034aebf9609a0ea1.tar.gz
emacs-da6c2ece1bd8201a9aa89fdd034aebf9609a0ea1.zip
(kkc-region): Use
this-single-command-raw-keys on pushing back an unhandled key sequence.
-rw-r--r--lisp/international/kkc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/kkc.el b/lisp/international/kkc.el
index dc313c7d30a..6da899af93a 100644
--- a/lisp/international/kkc.el
+++ b/lisp/international/kkc.el
@@ -291,7 +291,7 @@ and the return value is the length of the conversion."
291 ;; KEYSEQ is not defined in KKC keymap. 291 ;; KEYSEQ is not defined in KKC keymap.
292 ;; Let's put the event back. 292 ;; Let's put the event back.
293 (setq unread-input-method-events 293 (setq unread-input-method-events
294 (append (string-to-list keyseq) 294 (append (string-to-list (this-single-command-raw-keys))
295 unread-input-method-events)) 295 unread-input-method-events))
296 (kkc-terminate)))) 296 (kkc-terminate))))
297 297