summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2009-04-21 02:11:13 +0000
committerKenichi Handa <handa@m17n.org>2009-04-21 02:11:13 +0000
commit67fdd0f81143089c57fd87d7a3435764e15aa1e9 (patch)
tree6ea555a2bc17303caa057d5d1c89b9f08f8e0d79 /admin
parent31db3cdff3b11e4b561062c57efb30a00ae5b975 (diff)
downloademacs-67fdd0f81143089c57fd87d7a3435764e15aa1e9.tar.gz
(unidata-get-decomposition): Fix previous change.
Diffstat (limited to 'admin')
-rw-r--r--admin/unidata/unidata-gen.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index 7fecb999d35..cd2343b9d03 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -828,8 +828,8 @@ Property value is a character."
(L (+ #x1100 (/ char 588)))
;; V = VBase + (SIndex % NCount) * TCount
(V (+ #x1161 (/ (% char 588) 28)))
- ;; LV = SBase + (SIndex / NCount) * NCount
- (LV (+ #xAC00 (* (/ char 588) 588)))
+ ;; LV = SBase + (SIndex / TCount) * TCount
+ (LV (+ #xAC00 (* (/ char 28) 28)))
;; T = TBase + SIndex % TCount
(T (+ #x11A7 (% char 28))))
(if (= T #x11A7)