File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ### Bugs Fixed
6
+
7
+ * [ #77 ] ( https://github.com/clojure-emacs/inf-clojure/pull/77 ) : Fix request "Eval expression:" if arglists return is ` nil ` .
8
+
5
9
## 2.0.0 (2017-05-01)
6
10
7
11
### New Features
Original file line number Diff line number Diff line change @@ -978,7 +978,7 @@ the results buffer. It cuts out the output from
978
978
See variable `inf-clojure-arglists-form' ."
979
979
(let* ((arglists-snippet (format (inf-clojure-arglists-form) fn))
980
980
(arglists-result (inf-clojure-results-from-process (inf-clojure-proc) arglists-snippet))
981
- (arglists-data (read arglists-result)))
981
+ (arglists-data (when arglists-result ( read arglists-result) )))
982
982
(cond
983
983
((null arglists-data) nil )
984
984
((stringp arglists-data) arglists-data)
You can’t perform that action at this time.
0 commit comments