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:
54a1d6d
)
(char-db-make-char-spec): Don't add `name' into char-spec of
author
MORIOKA Tomohiko
<tomo.git@chise.org>
Fri, 17 May 2024 09:34:40 +0000
(18:34 +0900)
committer
MORIOKA Tomohiko
<tomo.git@chise.org>
Fri, 17 May 2024 09:38:05 +0000
(18:38 +0900)
Variation-Selectors of IVS.
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
87d11f6
..
eb5b318
100644
(file)
--- a/
lisp/utf-2000/char-db-util.el
+++ b/
lisp/utf-2000/char-db-util.el
@@
-451,7
+451,8
@@
(cond ((and (setq ret (encode-char char '=ucs 'defined-only))
(not (and (<= #xE000 ret)(<= ret #xF8FF))))
(setq char-spec (list (cons '=ucs ret)))
- (cond ((setq ret (get-char-attribute char 'name))
+ (cond ((and (not (and (<= #xE0100 ret)(<= ret #xE01EF)))
+ (setq ret (get-char-attribute char 'name)))
(setq char-spec (cons (cons 'name ret) char-spec))
)
((setq ret (get-char-attribute char 'name*))