File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,9 @@ original position when clearing or highlighting test results.
60
60
* [ #744 ] ( https://github.com/clojure-emacs/cider/issues/744 ) : Fix the ability to customize the
61
61
lein command invoked by ` cider-jack-in ` .
62
62
* [ #752 ] ( https://github.com/clojure-emacs/cider/issues/752 ) : Don't assume
63
- ` clojure.core/let ` is always available as ` let ` .
63
+ ` clojure.core/let ` is always available as ` let ` .
64
+ * [ #772 ] ( https://github.com/clojure-emacs/cider/issues/772 ) : Don't try to read Clojure results as
65
+ Emacs Lisp code.
64
66
65
67
## 0.7.0 / 2014-08-05
66
68
Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ NS specifies the namespace in which to evaluate the request."
132
132
133
133
(defun cider-get-value (eval-result )
134
134
" Get the value from EVAL-RESULT."
135
- (read (cider-get-raw-value eval-result)))
135
+ (with-output-to-string
136
+ (message " %s " (cider-get-raw-value eval-result))))
136
137
137
138
(defun cider-send-op (op attributes handler )
138
139
" Send the specified OP with ATTRIBUTES and response HANDLER."
You can’t perform that action at this time.
0 commit comments