aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2006-09-14 02:47:09 +0000
committerKenichi Handa <[email protected]>2006-09-14 02:47:09 +0000
commitf9536fb238209311e10468e4eb0fa2ac0a309816 (patch)
tree3ef5233774bc3fb3138f7f7575faac48312b75c2 /leim
parent4c71c1062a32fb31ae1e33932f026fd0deda0df5 (diff)
(ucs-input-method): Don't make the action of
a key not in [0-9a-zA-Z] when it was expected to be. Let the Emacs mechanism do it.
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog6
-rw-r--r--leim/quail/uni-input.el5
2 files changed, 6 insertions, 5 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 9b35715b5d..677b107b95 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,9 @@
+2006-09-06 Micha,Ak(Bl Cadilhac <[email protected]>
+
+ * quail/uni-input.el (ucs-input-method): Don't make the action of
+ a key not in [0-9a-zA-Z] when it was expected to be. Let the Emacs
+ mechanism do it.
+
2006-07-12 David Kastrup <[email protected]>
* quail/greek.el: Change iota subscriptum transliteration in
diff --git a/leim/quail/uni-input.el b/leim/quail/uni-input.el
index 1e6bdbd51e..851b4fdf22 100644
--- a/leim/quail/uni-input.el
+++ b/leim/quail/uni-input.el
@@ -100,11 +100,6 @@
(progn
(push key events)
(ucs-input-insert-char key))
- (let ((last-command-char key)
- (current-prefix-arg))
- (condition-case err
- (call-interactively (key-binding seq))
- (quail-error (message "%s" (cdr err)) (beep))))
(quail-delete-region)
(throw 'non-digit (append (reverse events)
(listify-key-sequence seq))))))