We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd986d commit 4e96e93Copy full SHA for 4e96e93
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## master (unreleased)
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
9
## 2.0.0 (2017-05-01)
10
11
### New Features
inf-clojure.el
@@ -978,7 +978,7 @@ the results buffer. It cuts out the output from
978
See variable `inf-clojure-arglists-form'."
979
(let* ((arglists-snippet (format (inf-clojure-arglists-form) fn))
980
(arglists-result (inf-clojure-results-from-process (inf-clojure-proc) arglists-snippet))
981
- (arglists-data (read arglists-result)))
+ (arglists-data (when arglists-result (read arglists-result))))
982
(cond
983
((null arglists-data) nil)
984
((stringp arglists-data) arglists-data)
0 commit comments