From ed6295edcf19ea69197a116ffd96c810e24408db Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Mon, 7 Sep 2020 21:41:52 +0900 Subject: [PATCH] When ideographic-structure is compacted, display system-char-id of the character object. --- install-ids.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install-ids.el b/install-ids.el index 5dea263..cbac096 100644 --- a/install-ids.el +++ b/install-ids.el @@ -88,7 +88,8 @@ (map-char-attribute (lambda (c v) (unless (equal (setq ret (ideographic-structure-compact v)) v) - (princ (format "Compact %c : %s -> %s\n" + (princ (format "Compact %04X (%c) : %s -> %s\n" + (char-int c) c (ideographic-structure-to-ids v) (ideographic-structure-to-ids ret))) -- 1.7.10.4