From 6ef39bfacd606516828b2bc83cd07d23df34c85f Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Sat, 15 Dec 2018 11:17:19 +0900 Subject: [PATCH] (char-db-dump-shuowen): Use `insert-char-data-with-variant' instead of `insert-char-data'. --- char-db-dump.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/char-db-dump.el b/char-db-dump.el index a314fe4..2f717af 100644 --- a/char-db-dump.el +++ b/char-db-dump.el @@ -168,7 +168,7 @@ char-db-file-coding-system)) (while (<= code 52101) (when (setq chr (decode-char '=shuowen-jiguge code 'defined-only)) - (insert-char-data chr)) + (insert-char-data-with-variant chr)) (setq code (1+ code))) (write-region (point-min)(point-max) (expand-file-name "ShuoWen.el" directory))))) -- 1.7.10.4