From: tomo Date: Wed, 6 Nov 2002 08:36:11 +0000 (+0000) Subject: (insert-char-attributes): Use `ucs-{jis|cns}' character in the comment X-Git-Tag: r21-2-44-utf-2000-m0_18-cb-2~36 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e64c0ae8d7b2855ac347ad4547f560dd63d1724d;p=chise%2Fxemacs-chise.git (insert-char-attributes): Use `ucs-{jis|cns}' character in the comment for a '=>ucs-{jis|cns}' property. --- diff --git a/lisp/utf-2000/char-db-util.el b/lisp/utf-2000/char-db-util.el index 2073fd1..95e7f14 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -485,14 +485,14 @@ (when (and (memq '=>ucs-jis attributes) (setq value (get-char-attribute char '=>ucs-jis))) (insert (format "(=>ucs-jis\t\t. #x%04X)\t; %c%s" - value (decode-char 'ucs value) + value (decode-char 'ucs-jis value) line-breaking)) (setq attributes (delq '=>ucs-jis attributes)) ) (when (and (memq '=>ucs-cns attributes) (setq value (get-char-attribute char '=>ucs-cns))) (insert (format "(=>ucs-cns\t\t. #x%04X)\t; %c%s" - value (decode-char 'ucs value) + value (decode-char 'ucs-cns value) line-breaking)) (setq attributes (delq '=>ucs-cns attributes)) )