summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-11-25 11:59:04 +0100
committerBozhidar Batsov <bozhidar@batsov.com>2016-11-25 11:59:04 +0100
commitc2d32d8b078ebbd5cb30abadf7b027c07b9ca76b (patch)
tree24daa76848baa923256933156e71501772762755 /cider-debug.el
parent8fef15e7ef83793f1cdc29404ce57596406935d3 (diff)
Drop some redundant string-related functions
We can now use the versions of those functions that were added in Emacs 24.4.
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-debug.el b/cider-debug.el
index 19fe9f8f..ff5eb3e5 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -228,7 +228,7 @@ Each element of LOCALS should be a list of at least two elements."
;; Force `default' face, otherwise the overlay "inherits" the face of the text
;; after it.
(format (propertize "%s\n" 'face 'default)
- (cider-string-join
+ (string-join
(nrepl-dict-map (lambda (char cmd)
(when-let ((pos (cl-search char cmd)))
(put-text-property pos (1+ pos) 'face 'cider-debug-prompt-face cmd))