(write-ideograph-radical-char-data): Use `char-db-file-coding-system'.
authortomo <tomo>
Tue, 6 Apr 2004 16:43:17 +0000 (16:43 +0000)
committertomo <tomo>
Tue, 6 Apr 2004 16:43:17 +0000 (16:43 +0000)
lisp/utf-2000/ideograph-util.el

index 042c87b..44c5f04 100644 (file)
 
 (defun write-ideograph-radical-char-data (radical file)
   (if (file-directory-p file)
 
 (defun write-ideograph-radical-char-data (radical file)
   (if (file-directory-p file)
-      (let ((name (get-char-attribute (int-char (+ #x2EFF radical)) 'name)))
+      (let ((name (char-feature (decode-char 'ucs (+ #x2EFF radical))
+                               'name)))
        (if (string-match "KANGXI RADICAL " name)
            (setq name (capitalize (substring name (match-end 0)))))
        (setq name (mapconcat (lambda (char)
        (if (string-match "KANGXI RADICAL " name)
            (setq name (capitalize (substring name (match-end 0)))))
        (setq name (mapconcat (lambda (char)
               (format "Ideograph-R%03d-%s.el" radical name)
               file))))
   (with-temp-buffer
               (format "Ideograph-R%03d-%s.el" radical name)
               file))))
   (with-temp-buffer
-    (insert ";; -*- coding: utf-8-mcs -*-\n")
+    (insert (format ";; -*- coding: %s -*-\n"
+                   char-db-file-coding-system))
     (insert-ideograph-radical-char-data radical)
     (insert-ideograph-radical-char-data radical)
-    (let ((coding-system-for-write 'utf-8-mcs))
-      (write-region (point-min)(point-max) file)
-      )))
+    (let ((coding-system-for-write char-db-file-coding-system))
+      (write-region (point-min)(point-max) file))))
 
 (defun ideographic-structure= (char1 char2)
   (if (char-ref-p char1)
 
 (defun ideographic-structure= (char1 char2)
   (if (char-ref-p char1)