branch: elpa/gnosis
commit bec4fc493795222f7c4c4f4238b2f432bc806c58
Author: Thanos Apollo <[email protected]>
Commit: Thanos Apollo <[email protected]>
[fix] monkeytype-thema: trim quotes.
---
gnosis.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnosis.el b/gnosis.el
index fe7fca15b6a..21cde9b387d 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -1205,7 +1205,8 @@ If NEW? is non-nil, increment new themata log by 1."
"\\[\\[\\([^]]+\\)\\]\\[\\([^]]+\\)\\]\\]" "\\2" ;; remove
links
(nth 0 thema-context)))
(type (nth 1 thema-context))
- (answer (nth 2 thema-context)))
+ (answer (cl-loop for answer in (nth 2 thema-context)
+ collect (gnosis-utils-trim-quotes answer))))
(cond ((string= type "basic")
(gnosis-monkeytype (concat keimenon "\n" (car answer)) type
answer))