Add code to compact `ideographic-structure' and
authorMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 10 Dec 2020 09:26:15 +0000 (18:26 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 10 Dec 2020 09:26:15 +0000 (18:26 +0900)
`ideographic-structure@apparent' in the second stage.

install-ids.el

index 9f0b9e3..49e1927 100644 (file)
        (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) : %s -> %s\n"
+                     (char-int c)
+                     c
+                     (ideographic-structure-to-ids v)
+                     (ideographic-structure-to-ids ret)))
+       (put-char-attribute c 'ideographic-structure ret)
+       (setq v ret))
+     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'...")