projects
/
chise
/
xemacs-chise.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
904b7cc
)
(insert-char-range-data): Use `decode-char' instead of `int-char';
author
tomo
<tomo>
Mon, 19 Jun 2000 11:37:58 +0000
(11:37 +0000)
committer
tomo
<tomo>
Mon, 19 Jun 2000 11:37:58 +0000
(11:37 +0000)
check `ucs' attribute.
lisp/utf-2000/char-db-util.el
patch
|
blob
|
history
diff --git
a/lisp/utf-2000/char-db-util.el
b/lisp/utf-2000/char-db-util.el
index
0d72cef
..
611f2b5
100644
(file)
--- a/
lisp/utf-2000/char-db-util.el
+++ b/
lisp/utf-2000/char-db-util.el
@@
-505,8
+505,9
@@
(let ((code min)
char)
(while (<= code max)
- (setq char (int-char code))
- (insert-char-data-with-variant char script)
+ (setq char (decode-char 'ucs code))
+ (if (get-char-attribute char 'ucs)
+ (insert-char-data-with-variant char script))
(setq code (1+ code))
)))