From: tomo Date: Tue, 25 Mar 2003 11:23:17 +0000 (+0000) Subject: (insert-char-attributes): Convert `=>ucs-jis' to `=>ucs@jis'. X-Git-Tag: r21-4-11-chise-0_20-=ucs-jis^2~2 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=eeedc012fb3636a9a369b6342c6b8b313184ad34;p=chise%2Fxemacs-chise.git.1 (insert-char-attributes): Convert `=>ucs-jis' to `=>ucs@jis'. --- diff --git a/lisp/utf-2000/char-db-util.el b/lisp/utf-2000/char-db-util.el index 958c3ec..2199bff 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -489,7 +489,7 @@ ;; line-breaking)) ;; (setq attributes (delq '=>ucs* attributes)) ;; ) - (dolist (name '(=>ucs@gb =>ucs@cns)) + (dolist (name '(=>ucs@gb =>ucs@cns =>ucs@jis)) (when (and (memq name attributes) (setq value (get-char-attribute char name))) (insert (format "(%-18s . #x%04X)\t; %c%s" @@ -525,8 +525,8 @@ ) (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-jis value) + (insert (format "(=>ucs@jis\t\t. #x%04X)\t; %c%s" + value (decode-char '=ucs@jis value) line-breaking)) (setq attributes (delq '=>ucs-jis attributes)) )