X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=install-ids.el;h=436c157f6e1108a83829a0343f7ee28ac42afc7d;hb=7ad1e2e1681a75e280d1dd6f16944dbd29823107;hp=a9ce523188cc4ff86a8091e710448ec11a174017;hpb=2de17cad94434dc4754480ddc2ce409dc818c924;p=chise%2Fids.git diff --git a/install-ids.el b/install-ids.el index a9ce523..436c157 100644 --- a/install-ids.el +++ b/install-ids.el @@ -42,6 +42,8 @@ (install-ids-read-file "IDS-UCS-Ext-G.txt" load-ids-simplify t) +(install-ids-read-file "IDS-UCS-Ext-H.txt" load-ids-simplify t) + (install-ids-read-file "IDS-UCS-Compat.txt" load-ids-simplify t) (install-ids-read-file "IDS-UCS-Compat-Supplement.txt" load-ids-simplify t) @@ -135,6 +137,19 @@ (map-char-attribute (lambda (c v) (unless (equal (setq ret (ideographic-structure-compact v)) v) + (princ (format "Compact %04X (%c) : [apparent/rightmost] %s -> %s\n" + (char-int c) + c + (ideographic-structure-to-ids v) + (ideographic-structure-to-ids ret))) + (put-char-attribute c 'ideographic-structure@apparent/rightmost ret) + (setq v ret)) + nil) + 'ideographic-structure@apparent/rightmost) + + (map-char-attribute + (lambda (c v) + (unless (equal (setq ret (ideographic-structure-compact v)) v) (princ (format "Compact %04X (%c) : %s -> %s\n" (char-int c) c @@ -168,6 +183,18 @@ (setq v ret)) nil) 'ideographic-structure@apparent/leftmost) + (map-char-attribute + (lambda (c v) + (unless (equal (setq ret (ideographic-structure-compact v)) v) + (princ (format "Compact %04X (%c) : [apparent/rightmost] %s -> %s\n" + (char-int c) + c + (ideographic-structure-to-ids v) + (ideographic-structure-to-ids ret))) + (put-char-attribute c 'ideographic-structure@apparent/rightmost ret) + (setq v ret)) + nil) + 'ideographic-structure@apparent/rightmost) (princ "done.\n") (princ "Updating char-feature `ideographic-structure'...")