From ae646a93ccc4226c40dcc5714f4933ce44c5826d Mon Sep 17 00:00:00 2001 From: Suvrat Apte Date: Wed, 2 Jan 2019 09:35:36 +0530 Subject: [PATCH] Fix: Elisp code snippet `cider-connections` is a function. So `(car cider-connections)` does not work. Replaced it with `(car (cider-connections))` --- repls.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repls.org b/repls.org index 50a9d34..4a1f1cf 100755 --- a/repls.org +++ b/repls.org @@ -659,7 +659,7 @@ experiment with nREPL from Emacs you can try this snippet #+BEGIN_SRC emacs-lisp - (nrepl-send-request '("op" "classpath") (lambda (&more) ) (car cider-connections)) + (nrepl-send-request '("op" "classpath") (lambda (&more) ) (car (cider-connections))) #+END_SRC And inspect the ~*nrepl-messages*~ buffer