1
0
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:
Kenichi Handa 1998-01-22 01:42:20 +00:00
parent 5e7e990e1a
commit f9222bef23

View File

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