1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(hangul3-input-method-jong): Fix array indexing bug.

This commit is contained in:
Kenichi Handa 2008-08-10 23:58:30 +00:00
parent 6807fdffa0
commit 92135d2593
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-10 Jihyun Cho <jihyun.jo@gmail.com>
* quail/hangul.el (hangul3-input-method-jong): Fix array indexing
bug.
2008-07-19 Juri Linkov <juri@jurta.org>
* quail/cyrillic.el ("cyrillic-translit"): Add two rules "//'" and

View File

@ -333,7 +333,7 @@ Other parts are the same as a `hangul3-input-method-cho'."
'jong
(aref hangul-queue 4)
char)))))
(aset hangul-queue 6 char)))
(aset hangul-queue 5 char)))
(hangul-insert-character hangul-queue)
(if (zerop (apply '+ (append hangul-queue nil)))
(hangul-insert-character (setq hangul-queue (vector 0 0 0 0 char 0)))