From e30a886e8f3c4b785c6ae770ae517160e904da0f Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 1 Nov 2005 11:21:12 +0000 Subject: [PATCH] Add code to delete old `ideographic-products'. --- install-ids.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/install-ids.el b/install-ids.el index fbbbf11..d0fcf73 100644 --- a/install-ids.el +++ b/install-ids.el @@ -11,6 +11,15 @@ (ids-read-file file simplify soft) (princ "done.\n")) + +(mount-char-attribute-table 'ideographic-products) +(map-char-attribute + (lambda (c v) + (remove-char-attribute c 'ideographic-products) + nil) + 'ideographic-products) + + (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) -- 1.7.10.4