From 1f4a48b1f1a1d30bad318a91fd3a67ecfe21b155 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 14 Nov 2001 19:12:26 +0000 Subject: [PATCH] (insert-char-attributes): Format `=>ucs*' property. --- 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 89e99e5..95ea201 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -401,6 +401,13 @@ line-breaking)) (setq attributes (delq '=>ucs attributes)) ) + (when (and (memq '=>ucs* attributes) + (setq value (get-char-attribute char '=>ucs*))) + (insert (format "(=>ucs*\t\t. #x%04X)\t; %c%s" + value (decode-char 'ucs value) + line-breaking)) + (setq attributes (delq '=>ucs* 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