From bfa8ce714c0b70ec87653e7d96662c7a82c91dad Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 22 Nov 1999 12:46:24 +0000 Subject: [PATCH] (update-ideograph-radical-table): Add `japanese-jisx0213-1' and `japanese-jisx0213-2'. --- lisp/utf-2000/ideograph-util.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/utf-2000/ideograph-util.el b/lisp/utf-2000/ideograph-util.el index 4907d9a..2133b1f 100644 --- a/lisp/utf-2000/ideograph-util.el +++ b/lisp/utf-2000/ideograph-util.el @@ -61,6 +61,8 @@ japanese-jisx0208 japanese-jisx0208-1990 japanese-jisx0212 + japanese-jisx0213-1 + japanese-jisx0213-2 chinese-cns11643-1 chinese-cns11643-2 chinese-cns11643-3 @@ -192,7 +194,10 @@ file)))) (with-temp-buffer (insert-ideograph-radical-char-data radical) - (write-region (point-min)(point-max) file))) + (char-db-update-comment) + (let ((coding-system-for-write 'utf-8)) + (write-region (point-min)(point-max) file) + ))) (provide 'ideograph-util) -- 1.7.10.4