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:
0dd8142
)
(char-attribute-name<): Don't prefer `*foo' to `foo' and `->foo'.
author
MORIOKA Tomohiko
<tomo.git@chise.org>
Tue, 11 Dec 2012 15:44:17 +0000
(
00:44
+0900)
committer
MORIOKA Tomohiko
<tomo.git@chise.org>
Tue, 11 Dec 2012 15:44:17 +0000
(
00:44
+0900)
lisp/utf-2000/chise-subr.el
patch
|
blob
|
history
diff --git
a/lisp/utf-2000/chise-subr.el
b/lisp/utf-2000/chise-subr.el
index
70e96d9
..
a9dce30
100644
(file)
--- a/
lisp/utf-2000/chise-subr.el
+++ b/
lisp/utf-2000/chise-subr.el
@@
-63,6
+63,17
@@
(defun char-attribute-name< (ka kb)
"Return t if symbol KA is less than KB in feature-name sorting order."
(cond
+ ((and (symbolp ka)
+ (eq (aref (symbol-name ka) 0) ?*))
+ (cond ((and (symbolp kb)
+ (eq (aref (symbol-name kb) 0) ?*))
+ (string< (symbol-name ka)
+ (symbol-name kb))
+ ))
+ )
+ ((and (symbolp kb)
+ (eq (aref (symbol-name kb) 0) ?*))
+ t)
((eq '->denotational kb)
t)
((eq '->subsumptive kb)