summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfourtytoo <fourtytoo@users.noreply.github.com>2018-05-31 17:23:11 +0200
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-06-01 00:23:11 +0900
commit89cb4a4130c662945956761e525ab150f5c9f29b (patch)
tree9396458c6ae90e4f30208163e911ea8db55b8942
parentc40a020e8a59821f6fcae7557a340b272f5babee (diff)
Fix a typo in cider-connections function (#2304)
-rw-r--r--cider-client.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-client.el b/cider-client.el
index fcdba23a..5d30ea22 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -92,7 +92,7 @@ found."
If the list is empty and buffer-local, return the global value."
(or (setq cider-connections
(seq-filter #'buffer-live-p cider-connections))
- (when (local-variable-p 'cider-connect)
+ (when (local-variable-p 'cider-connections)
(kill-local-variable 'cider-connections)
(seq-filter #'buffer-live-p cider-connections))))