From e1d9ac7415cc42beca4983a197600567efd8c607 Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 4 Dec 2001 11:54:20 +0000 Subject: [PATCH] (insert-char-attributes): Add setting to format `=>ucs-jis'. --- lisp/utf-2000/char-db-util.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/utf-2000/char-db-util.el b/lisp/utf-2000/char-db-util.el index 7cd5bf6..9bd4919 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -415,6 +415,13 @@ line-breaking)) (setq attributes (delq '=>ucs* attributes)) ) + (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) + line-breaking)) + (setq attributes (delq '=>ucs-jis attributes)) + ) (when (and (memq '->ucs attributes) (setq value (get-char-attribute char '->ucs))) (insert (format (if char-db-convert-obsolete-format -- 1.7.10.4