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:
aa34b23
)
(est-eval-value-as-created-works): Fix problem when some items of
author
MORIOKA Tomohiko
<tomo.git@chise.org>
Tue, 13 Sep 2016 08:09:56 +0000
(17:09 +0900)
committer
MORIOKA Tomohiko
<tomo.git@chise.org>
Tue, 13 Sep 2016 08:09:56 +0000
(17:09 +0900)
value are omitted.
est-eval.el
patch
|
blob
|
history
diff --git
a/est-eval.el
b/est-eval.el
index
d327070
..
25b8042
100644
(file)
--- a/
est-eval.el
+++ b/
est-eval.el
@@
-692,9
+692,11
@@
'(:subtype unordered-list)
'(:separator " "))
(mapcar (lambda (creator)
- (est-eval-list
- '((value (:feature <-creator)))
- creator nil))
+ (if (concord-object-p creator)
+ (est-eval-list
+ '((value (:feature <-creator)))
+ creator nil)
+ (est-eval-value-default creator)))
value))
(est-eval-value-default value)))