Skip to content

Commit 1d7916b

Browse files
yuhan0bbatsov
authored andcommitted
Fix typo in pr-request-map
It currently treats the 4-element list as a 2-element pair and ignores the intended setting of stream?, but this does not affect functionality since its default value is nil.
1 parent 5b4dbcb commit 1d7916b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cider-client.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ is included in the request if non-nil."
397397
(seq-mapcat #'identity)
398398
(apply #'nrepl-dict))))
399399
(map-merge 'list
400-
`(("nrepl.middleware.print/print" "cider.nrepl.pprint/pr"
401-
"nrepl.middleware.print/stream?" nil))
400+
`(("nrepl.middleware.print/print" "cider.nrepl.pprint/pr")
401+
("nrepl.middleware.print/stream?" nil))
402402
(unless (nrepl-dict-empty-p print-options)
403403
`(("nrepl.middleware.print/options" ,print-options)))
404404
(when cider-print-quota

0 commit comments

Comments
 (0)