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 ee38fc3 commit c08d8bbCopy full SHA for c08d8bb
inf-clojure.el
@@ -1056,8 +1056,8 @@ readable sexp only."
1056
"Eval MATCH-P on the response of sending to PROC the input FORM.
1057
Note that this function will add a \n to the end of the string
1058
for evaluation, therefore FORM should not include it."
1059
- (when-let ((response (inf-clojure--process-response form proc)))
1060
- (funcall match-p response)))
+ (let ((response (inf-clojure--process-response form proc)))
+ (when response (funcall match-p response))))
1061
1062
(defun inf-clojure--some-response-p (proc form)
1063
"Return true iff PROC's response after evaluating FORM is not nil."
0 commit comments