(char-db-insert-char-spec): Make temporary character if corresponding
authortomo <tomo>
Mon, 1 Oct 2001 04:16:02 +0000 (04:16 +0000)
committertomo <tomo>
Mon, 1 Oct 2001 04:16:02 +0000 (04:16 +0000)
character is not found for char-spec.

lisp/utf-2000/char-db-util.el

index def4915..fa66bbc 100644 (file)
 (defun char-db-insert-char-spec (char &optional readable column)
   (unless column
     (setq column (current-column)))
-  (let (char-spec ret al cal key)
+  (let (char-spec ret al cal key temp-char)
     (cond ((characterp char)
           (cond ((setq ret (get-char-attribute char 'ucs))
                  (unless (and (<= #xE000 ret)(<= ret #xF8FF))
          ((consp char)
           (setq char-spec char)
           (setq char nil)))
-    (if (or char
-           (setq char (condition-case nil
-                          (find-char char-spec)
-                        (error nil))))
-       (progn
-         (setq al nil
-               cal nil)
-         (while char-spec
-           (setq key (car (car char-spec)))
-           (if (find-charset key)
-               (setq cal (cons key cal))
-             (setq al (cons key al)))
-           (setq char-spec (cdr char-spec)))
-         (insert-char-attributes char
-                                 readable
-                                 (or al 'none) cal))
-      (insert (prin1-to-string char-spec)))))
+    (unless (or char
+               (condition-case nil
+                   (setq char (find-char char-spec))
+                 (error nil)))
+      ;; define temporary character
+      ;;   Current implementation is dirty.
+      (setq temp-char (define-char (cons '(ideograph-daikanwa . 0)
+                                        char-spec)))
+      (remove-char-attribute temp-char 'ideograph-daikanwa)
+      (setq char temp-char))
+    (setq al nil
+         cal nil)
+    (while char-spec
+      (setq key (car (car char-spec)))
+      (if (find-charset key)
+         (setq cal (cons key cal))
+       (setq al (cons key al)))
+      (setq char-spec (cdr char-spec)))
+    (insert-char-attributes char
+                           readable
+                           (or al 'none) cal)
+    (when temp-char
+      ;; undefine temporary character
+      ;;   Current implementation is dirty.
+      (setq char-spec (char-attribute-alist temp-char))
+      (while char-spec
+       (remove-char-attribute temp-char (car (car char-spec)))
+       (setq char-spec (cdr char-spec))))))
 
 (defun char-db-insert-alist (alist &optional readable column)
   (unless column
       (setq value (pop plist))
       (cond ((eq name :char)
             (insert ":char\t")
-            (if (numberp value)
-                (setq value (decode-char 'ucs value)))
+            (cond ((numberp value)
+                   (setq value (decode-char 'ucs value)))
+                   ;; ((consp value)
+                   ;;  (setq value (or (find-char value)
+                   ;;                  value)))
+                  )
             (char-db-insert-char-spec value readable)
              (insert line-breaking))
             (t