summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-01-10 20:41:29 +0000
committerBozhidar Batsov <bozhidar@batsov.com>2016-01-19 18:36:29 +0200
commit6300fb9b2d25512b617819db44e0b27b8910e588 (patch)
treedcdc96aebfe288b3ab354ff412232712e651c4db /cider-mode.el
parent679d3aa567d8428355b697dfc10866e9c2338d3c (diff)
Remove a redundant concat
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-mode.el b/cider-mode.el
index dca53117..9905fd0d 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -50,7 +50,7 @@ Info contains project name and host:port endpoint."
(if-let ((current-connection (ignore-errors (cider-current-connection))))
(with-current-buffer current-connection
(concat
- (concat cider-repl-type ":")
+ cider-repl-type ":"
(when cider-mode-line-show-connection
(format "%s@%s:%s"
(or (cider--project-name nrepl-project-dir) "<no project>")