emacs-elpa-diffs
[Top][All Lists]
Advanced

[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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]