mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-14 09:39:42 +00:00
(quail-show-kbd-layout): Bug fix for the
case that TRANSLATION is a cons.
This commit is contained in:
parent
5e7e990e1a
commit
f9222bef23
@ -1869,7 +1869,7 @@ key binding
|
||||
(if (integerp translation)
|
||||
(insert translation)
|
||||
(if (consp translation)
|
||||
(insert (aref (cdr translation) (car translation)))
|
||||
(insert (aref (cdr translation) (car (car translation))))
|
||||
(let ((last-command-event ch))
|
||||
(self-insert-command 1)))))))
|
||||
(setq i (1+ i))))
|
||||
|
Loading…
Reference in New Issue
Block a user