projects
/
chise
/
est.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
00f4159
)
(www-format-encode-string): Check return value of
author
MORIOKA Tomohiko
<tomo.git@chise.org>
Thu, 1 Jun 2017 07:06:29 +0000
(16:06 +0900)
committer
MORIOKA Tomohiko
<tomo.git@chise.org>
Thu, 1 Jun 2017 07:06:29 +0000
(16:06 +0900)
`www-get-feature-value' to accept character object as the same as list
of characters.
cwiki-common.el
patch
|
blob
|
history
diff --git
a/cwiki-common.el
b/cwiki-common.el
index
6cb9d19
..
1f7e082
100644
(file)
--- a/
cwiki-common.el
+++ b/
cwiki-common.el
@@
-1183,7
+1183,9
@@
style=\"vertical-align:middle\">"
(or (www-get-feature-value char '->subsumptive)
(www-get-feature-value char '->denotational)))
(progn
- (while (and variants
+ (if (characterp variants)
+ (setq variants (list variants)))
+ (while (and variants
(setq ret (www-format-encode-string
(char-to-string (car variants))))
(string-match "&MCS-\\([0-9A-F]+\\);" ret))