summaryrefslogtreecommitdiff
path: root/cider-client.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-06-02 12:09:38 -0300
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-06-02 12:09:38 -0300
commitdd07f59cbfbe49caaa9c9058a9b32ead4ca7d7ab (patch)
treebcba816b0bd818846f3e914158ac585f1a772143 /cider-client.el
parente2f9ffd5646e1c0033c090441ee84af91e799b22 (diff)
Change read-char to read-key
Diffstat (limited to 'cider-client.el')
-rw-r--r--cider-client.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/cider-client.el b/cider-client.el
index 4836aecd..56df13e3 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -284,12 +284,12 @@ to a still-undetermined bug in the state-stracker backend."
;; So we have multiple connections. Look for the connection type we
;; want, prioritizing the current project.
(or (seq-find (lambda (c) (string-match "\\bCLJS\\b" (buffer-name c)))
- project-connections)
+ project-connections)
(seq-find (lambda (c) (string-match "\\bCLJS\\b" (buffer-name c)))
- (cider-connections)))))
+ (cider-connections)))))
(unless cider--has-warned-about-bad-repl-type
(setq cider--has-warned-about-bad-repl-type t)
- (read-char
+ (read-key
(concat "The ClojureScript REPL seems to be is misbehaving."
(substitute-command-keys
"\nWe have applied a workaround, but please also file a bug report with `\\[cider-report-bug]'.")