# HG changeset patch # User Kenichi Handa # Date 1115862580 0 # Node ID dfbe37c15be378dbaea2be152d54ff1510678288 # Parent d52532c2446401f43e831e0dd31b37dc2281cf2d (unidata-get-decomposition): For Hangul decomposition, if T is the same as TBase, don't include it in the returned list. diff -r d52532c24464 -r dfbe37c15be3 admin/unidata/unidata-gen.el --- a/admin/unidata/unidata-gen.el Wed May 11 12:29:35 2005 +0000 +++ b/admin/unidata/unidata-gen.el Thu May 12 01:49:40 2005 +0000 @@ -773,7 +773,9 @@ (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)))) ))