From: tomo Date: Mon, 22 Oct 2001 06:48:38 +0000 (+0000) Subject: (char-db-coded-charset-priority-list): Eliminate Mule-private X-Git-Tag: r21-2-41-utf-2000-0_18-1~91 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=f979c6648e17a7bac89130f223326a1ff79676a3;p=chise%2Fxemacs-chise.git.1 (char-db-coded-charset-priority-list): Eliminate Mule-private coded-charsets and ideograph-gt-pj-* from initial value; add `ideograph-gt' into initial value. (char-db-insert-char-spec): Modify to avoid enmity char-spec. --- diff --git a/lisp/utf-2000/char-db-util.el b/lisp/utf-2000/char-db-util.el index cbf81eb..f175cec 100644 --- a/lisp/utf-2000/char-db-util.el +++ b/lisp/utf-2000/char-db-util.el @@ -117,8 +117,26 @@ nil))) (defvar char-db-coded-charset-priority-list - (sort (copy-list default-coded-charset-priority-list) - #'char-attribute-name<)) + (let ((rest default-coded-charset-priority-list) + dest) + (while rest + (when (symbolp (car rest)) + (cond ((memq (car rest) + '(latin-viscii-lower + latin-viscii-upper + ipa + lao + ethiopic + arabic-digit + arabic-1-column + arabic-2-column))) + ((string-match "^ideograph-gt-pj-" (symbol-name (car rest))) + (unless (memq 'ideograph-gt dest) + (setq dest (cons 'ideograph-gt dest)))) + (t + (setq dest (cons (car rest) dest))))) + (setq rest (cdr rest))) + (sort dest #'char-attribute-name<))) (defun char-db-insert-char-spec (char &optional readable column) (unless column @@ -141,6 +159,8 @@ (setq ret (get-char-attribute char ccs))) (eq ccs 'ideograph-daikanwa)) (setq char-spec (cons (cons ccs ret) char-spec)))) + (if (null char-spec) + (setq char-spec (split-char char))) (if (setq ret (get-char-attribute char 'name)) (setq char-spec (cons (cons 'name ret) char-spec))) )))