Mercurial > emacs
changeset 90176:dfbe37c15be3
(unidata-get-decomposition): For Hangul
decomposition, if T is the same as TBase, don't include it in the
returned list.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 12 May 2005 01:49:40 +0000 |
parents | d52532c24464 |
children | 26fb5aed8256 |
files | admin/unidata/unidata-gen.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))) ))