X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=install-ids.el;h=73471de61ae1d4661b8676d9c3fa03499d510227;hb=65b5a1ebed5cb2d3fa2b7769e1cefffd93236139;hp=dbb82fe4960402886b99489faf288c230c07cc8b;hpb=a31ca15ee3f1394dc7a1a5b4c7486b71879e7609;p=chise%2Fids.git diff --git a/install-ids.el b/install-ids.el index dbb82fe..73471de 100644 --- a/install-ids.el +++ b/install-ids.el @@ -11,31 +11,41 @@ (ids-read-file file simplify soft) (princ "done.\n")) +(install-ids-read-file "IDS-JIS-X0208-1990.txt" load-ids-simplify t) + +(install-ids-read-file "IDS-UCS-Basic.txt" load-ids-simplify t) + +(install-ids-read-file "IDS-UCS-Ext-A.txt" load-ids-simplify t) +(let ((i 1)) + (while (<= i 6) + (install-ids-read-file (format "IDS-UCS-Ext-B-%d.txt" i) + load-ids-simplify t) + (setq i (1+ i)))) + +(let ((i 1)) + (while (<= i 2) + (install-ids-read-file (format "IDS-CNS-%d.txt" i) + load-ids-simplify t) + (setq i (1+ i)))) + (let ((i 1)) (while (<= i 12) (install-ids-read-file (format "IDS-Daikanwa-%02d.txt" i) load-ids-simplify t) (setq i (1+ i)))) -(install-ids-read-file "IDS-CBETA.txt" load-ids-simplify t) - (install-ids-read-file "IDS-Daikanwa-dx.txt" load-ids-simplify t) (install-ids-read-file "IDS-Daikanwa-ho.txt" load-ids-simplify t) -(install-ids-read-file "IDS-UCS-Basic.txt" load-ids-simplify t) +(install-ids-read-file "IDS-CBETA.txt" load-ids-simplify t) -(install-ids-read-file "IDS-UCS-Ext-A.txt" load-ids-simplify t) -(let ((i 1)) - (while (<= i 6) - (install-ids-read-file (format "IDS-UCS-Ext-B-%d.txt" i) - load-ids-simplify t) - (setq i (1+ i)))) -(install-ids-read-file "IDS-JIS-X0208-1990.txt" load-ids-simplify t) +(install-ids-read-file "IDS-CDP.txt" load-ids-simplify t) +;; (install-ids-read-file "IDS-HZK01.txt" load-ids-simplify t) +;; (install-ids-read-file "IDS-HZK02.txt" load-ids-simplify t) +;; (install-ids-read-file "IDS-HZK03.txt" load-ids-simplify t) -(princ "Saving into ") -(princ exec-directory) -(princ "char-db/system-char-id/ideographic-structure...") +(princ "Updating char-feature `ideographic-structure'...") (save-char-attribute-table 'ideographic-structure) (princ "done.\n")