[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/cider 1d7916bfb5 4/9: Fix typo in pr-request-map
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/cider 1d7916bfb5 4/9: Fix typo in pr-request-map |
Date: |
Wed, 27 Apr 2022 01:58:04 -0400 (EDT) |
branch: elpa/cider
commit 1d7916bfb5128f0a24565f2616d24ff82b7685f5
Author: yuhan0 <qythium@gmail.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>
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.
---
cider-client.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cider-client.el b/cider-client.el
index a523d998e5..00c906077a 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -397,8 +397,8 @@ is included in the request if non-nil."
(seq-mapcat #'identity)
(apply #'nrepl-dict))))
(map-merge 'list
- `(("nrepl.middleware.print/print" "cider.nrepl.pprint/pr"
- "nrepl.middleware.print/stream?" nil))
+ `(("nrepl.middleware.print/print" "cider.nrepl.pprint/pr")
+ ("nrepl.middleware.print/stream?" nil))
(unless (nrepl-dict-empty-p print-options)
`(("nrepl.middleware.print/options" ,print-options)))
(when cider-print-quota
- [nongnu] elpa/cider updated (7506cc4613 -> 2d3b18377a), ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 201811ecd9 1/9: Save eval results into custom register, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 3e238465a0 2/9: Add command for saving last eval to kill ring, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 5b4dbcb3a1 3/9: Add keybinding, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 993a84041c 8/9: Add docs for eval registers, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 1d7916bfb5 4/9: Fix typo in pr-request-map,
ELPA Syncer <=
- [nongnu] elpa/cider 33271f1342 5/9: Handle streaming of results in eval handlers, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider a9679d33f1 7/9: Update changelog, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 1580f11941 6/9: Remove eval-register from printing handlers, ELPA Syncer, 2022/04/27
- [nongnu] elpa/cider 2d3b18377a 9/9: [Docs] Document the connection hooks, ELPA Syncer, 2022/04/27