From d186e58671309ac27ba0656f870b260eaf9d745a Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 18 Feb 2003 17:59:59 +0000 Subject: [PATCH] (insert-char-attributes): Add setting for `=>ucs-big5'. --- 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 3f9e522..3ff2e81 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -471,6 +471,13 @@ line-breaking)) (setq attributes (delq '=>ucs-cns attributes)) ) + (when (and (memq '=>ucs-big5 attributes) + (setq value (get-char-attribute char '=>ucs-big5))) + (insert (format "(=>ucs-big5\t\t. #x%04X)\t; %c%s" + value (decode-char 'ucs-big5 value) + line-breaking)) + (setq attributes (delq '=>ucs-big5 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" -- 1.7.10.4