From: Kenichi Handa Date: Thu, 14 Sep 2006 02:47:09 +0000 (+0000) Subject: (ucs-input-method): Don't make the action of X-Git-Tag: emacs-pretest-22.0.90~573 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f9536fb238209311e10468e4eb0fa2ac0a309816;p=emacs.git (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. --- diff --git a/leim/ChangeLog b/leim/ChangeLog index 9b35715b5db..677b107b95e 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,9 @@ +2006-09-06 Micha,Ak(Bl Cadilhac + + * 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 * quail/greek.el: Change iota subscriptum transliteration in diff --git a/leim/quail/uni-input.el b/leim/quail/uni-input.el index 1e6bdbd51e8..851b4fdf223 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))))))