X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=install-ids.el;h=9b5e11845a411b5da0d4cddf78e1bdf61b3075b4;hb=HEAD;hp=49e1927687287c9e2098ac7ebee1950e3e2a5324;hpb=62311941f3eceaebaaac44d870025312a924db7c;p=chise%2Fids.git diff --git a/install-ids.el b/install-ids.el index 49e1927..2762e9e 100644 --- a/install-ids.el +++ b/install-ids.el @@ -42,8 +42,14 @@ (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-Ext-I.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) + (let ((i 1)) (while (<= i 3) (install-ids-read-file (format "IDS-CNS-%d.txt" i) @@ -69,6 +75,8 @@ ;; load-ids-simplify t) ;; (setq i (1+ i)))) +(install-ids-read-file "IDS-SW-JIGUGE.txt" load-ids-simplify t) + (princ "Generating apparent-structure...") (let* ((terminal-coding-system 'utf-8-mcs-er) (feature-dir @@ -118,6 +126,32 @@ (map-char-attribute (lambda (c v) (unless (equal (setq ret (ideographic-structure-compact v)) v) + (princ (format "Compact %04X (%c) : [apparent/leftmost] %s -> %s\n" + (char-int c) + c + (ideographic-structure-to-ids v) + (ideographic-structure-to-ids ret))) + (put-char-attribute c 'ideographic-structure@apparent/leftmost ret) + (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) + + (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 @@ -139,6 +173,30 @@ (setq v ret)) nil) 'ideographic-structure@apparent) + (map-char-attribute + (lambda (c v) + (unless (equal (setq ret (ideographic-structure-compact v)) v) + (princ (format "Compact %04X (%c) : [apparent/leftmost] %s -> %s\n" + (char-int c) + c + (ideographic-structure-to-ids v) + (ideographic-structure-to-ids ret))) + (put-char-attribute c 'ideographic-structure@apparent/leftmost ret) + (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'...")