(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.
This commit is contained in:
Kenichi Handa 2006-09-14 02:47:09 +00:00
parent 4c71c1062a
commit f9536fb238
2 changed files with 6 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2006-09-06 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org>
* 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 <dak@gnu.org>
* quail/greek.el: Change iota subscriptum transliteration in

View file

@ -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))))))