From: MORIOKA Tomohiko Date: Thu, 15 Oct 2020 00:56:55 +0000 (+0900) Subject: Add code to compact `ideographic-structure@apparent'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=d99168e47d6fd72a28f317f8dce5e0691dd4820c;p=chise%2Fids.git Add code to compact `ideographic-structure@apparent'. --- diff --git a/install-ids.el b/install-ids.el index cbac096..9f0b9e3 100644 --- a/install-ids.el +++ b/install-ids.el @@ -101,6 +101,19 @@ (ideographic-structure-compact a-str)))) nil) 'ideographic-structure) + + (map-char-attribute + (lambda (c v) + (unless (equal (setq ret (ideographic-structure-compact v)) v) + (princ (format "Compact %04X (%c) : [apparent] %s -> %s\n" + (char-int c) + c + (ideographic-structure-to-ids v) + (ideographic-structure-to-ids ret))) + (put-char-attribute c 'ideographic-structure@apparent ret) + (setq v ret)) + nil) + 'ideographic-structure@apparent) (princ "done.\n") (princ "Updating char-feature `ideographic-structure'...")