We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c046a9 commit 2b089d7Copy full SHA for 2b089d7
cider-client.el
@@ -295,8 +295,9 @@ is included in the request if non-nil."
295
(seq-mapcat #'identity)
296
(apply #'nrepl-dict))))
297
(map-merge 'list
298
- `(("nrepl.middleware.print/print" ,(cider--print-fn))
299
- ("nrepl.middleware.print/stream?" "1"))
+ `(("nrepl.middleware.print/stream?" "1"))
+ (when cider-print-fn
300
+ `(("nrepl.middleware.print/print" ,(cider--print-fn))))
301
(when cider-print-quota
302
`(("nrepl.middleware.print/quota" ,cider-print-quota)))
303
(unless (nrepl-dict-empty-p print-options)
0 commit comments