summaryrefslogtreecommitdiff
path: root/leim/quail
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2008-08-10 23:58:01 +0000
committerKenichi Handa <handa@m17n.org>2008-08-10 23:58:01 +0000
commitbe23d683c5e0dcb0d382e6ce018a9d88b6ee618f (patch)
tree3decfbb5016958646fa968f5fe920ed3e5c431f5 /leim/quail
parent267ddf1b36bc5f5a698bdc7c9960734b7bf69c27 (diff)
downloademacs-be23d683c5e0dcb0d382e6ce018a9d88b6ee618f.tar.gz
(hangul3-input-method-jong): Fix array indexing bug.
Diffstat (limited to 'leim/quail')
-rw-r--r--leim/quail/hangul.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/leim/quail/hangul.el b/leim/quail/hangul.el
index d46746e64f8..76ce625d292 100644
--- a/leim/quail/hangul.el
+++ b/leim/quail/hangul.el
@@ -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)))