summaryrefslogtreecommitdiff
path: root/admin/unidata
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2005-05-12 01:49:40 +0000
committerKenichi Handa <handa@m17n.org>2005-05-12 01:49:40 +0000
commitd636247a15352b3c1a074385063c6f7c4deac882 (patch)
tree0a4b952c538c77ca552398cd16dc3c22cfd7780f /admin/unidata
parent8f793978651e33f7436ff01348ef2a04126ab9da (diff)
downloademacs-d636247a15352b3c1a074385063c6f7c4deac882.tar.gz
(unidata-get-decomposition): For Hangul
decomposition, if T is the same as TBase, don't include it in the returned list.
Diffstat (limited to 'admin/unidata')
-rw-r--r--admin/unidata/unidata-gen.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index f08ddc68b27..75d7e2d98fa 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -773,7 +773,9 @@ Property value is a character."
(V (+ #x1161 (/ (% char 588) 28)))
;; T = TBase + SIndex % TCount
(T (+ #x11A7 (% char 28))))
- (list L V T)))
+ (if (= T #x11A7)
+ (list L V)
+ (list L V T))))
))