projects
/
chise
/
xemacs-chise.git.1
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92bed06
)
(insert-ideograph-radical-char-data): Ignore non-Unicode UCS
author
tomo
<tomo>
Sun, 14 Jul 2002 11:05:39 +0000
(11:05 +0000)
committer
tomo
<tomo>
Sun, 14 Jul 2002 11:05:39 +0000
(11:05 +0000)
code-points.
lisp/utf-2000/ideograph-util.el
patch
|
blob
|
history
diff --git
a/lisp/utf-2000/ideograph-util.el
b/lisp/utf-2000/ideograph-util.el
index
1bb7c38
..
7044aa9
100644
(file)
--- a/
lisp/utf-2000/ideograph-util.el
+++ b/
lisp/utf-2000/ideograph-util.el
@@
-267,7
+267,11
@@
(aset ideograph-radical-chars-vector radical chars)
(dolist (char chars)
(when (some (lambda (ccs)
- (encode-char char ccs))
+ (let ((code (encode-char char ccs)))
+ (and code
+ ;;(not (memq ccs char-db-ignored-attributes))
+ ;;(or (not (memq ccs '(ucs))
+ (and (<= 0 code)(<= code #x10FFFF)))))
ccss)
(insert-char-data char nil attributes ccss)))))