Skip to content

Commit 1be3b89

Browse files
committed
Make the cider-info-form a bit more robust
1 parent 274297e commit 1be3b89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cider-client.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ contain a `candidates' key, it is returned as is."
432432
(update :file (comp str clojure.java.io/resource))
433433
(cond-> (:macro info) (update :macro str))
434434
(cond-> (:special-form info) (update :special-form str))
435-
(assoc :arglists-str (str (:arglists info)))
435+
(cond-> (:protocol info) (update :protocol str))
436+
(cond-> (:arglists info) (update :arglists str))
437+
(assoc :arglists-str (:arglists info))
436438
(clojure.walk/stringify-keys)))))
437439
")
438440

0 commit comments

Comments
 (0)