diff options
author | Miles Bader <miles@gnu.org> | 2006-09-14 09:24:00 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-09-14 09:24:00 +0000 |
commit | 863153c57b164f79f030f34dba6953a3d0d60097 (patch) | |
tree | 85c2823f2a948b0d8757b6787cb059793581339a /leim | |
parent | fae22cbf7f66b7adc732e46a27b821114c812fdd (diff) | |
parent | f9536fb238209311e10468e4eb0fa2ac0a309816 (diff) | |
download | emacs-863153c57b164f79f030f34dba6953a3d0d60097.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 427-436)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 134-136)
- Merge from emacs--devo--0
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-110
Diffstat (limited to 'leim')
-rw-r--r-- | leim/ChangeLog | 6 | ||||
-rw-r--r-- | leim/quail/uni-input.el | 5 |
2 files changed, 6 insertions, 5 deletions
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 <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 diff --git a/leim/quail/uni-input.el b/leim/quail/uni-input.el index 11d5d7393a8..73ba07ef566 100644 --- a/leim/quail/uni-input.el +++ b/leim/quail/uni-input.el @@ -74,11 +74,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)))))) |