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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider 1f0e6c3507 4/5: Ignore errors when filtering for dea


From: ELPA Syncer
Subject: [nongnu] elpa/cider 1f0e6c3507 4/5: Ignore errors when filtering for dead REPLs
Date: Sat, 17 Jun 2023 04:01:33 -0400 (EDT)

branch: elpa/cider
commit 1f0e6c350751c7ffd689708d56b5fdbb777a9563
Author: yuhan0 <qythium@gmail.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Ignore errors when filtering for dead REPLs
---
 cider-connection.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cider-connection.el b/cider-connection.el
index 8e146bcefa..b47a11e575 100644
--- a/cider-connection.el
+++ b/cider-connection.el
@@ -853,7 +853,7 @@ PARAMS is a plist as received by `cider-repl-create'."
            (type (plist-get params :repl-type))
            (scored-repls
             (mapcar (lambda (b)
-                      (let ((bparams (cider--gather-connect-params nil b)))
+                      (let ((bparams (ignore-errors 
(cider--gather-connect-params nil b))))
                         (when (eq type (plist-get bparams :repl-type))
                           (cons b (+
                                    (if (equal proj-dir (plist-get bparams 
:project-dir)) 8 0)



reply via email to

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