summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-04-30 17:09:37 -0300
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-04-30 17:12:18 -0300
commit54933ddd2bd1ca92fb10c3ac49e0b284278df0e3 (patch)
treee1707abbc320b100b6de0f905dd4beb0190b9ba1 /cider-debug.el
parent1e95f720c31520d36d01afb291af6bd074038891 (diff)
Move dictionary manipulation to its own file, nrepl-dict.el
A lot of .el files have to manipulate dictionaries, so this forced a lot of files to depend on nrepl-client.el. These were muddy waters if we plan on supporting SocketREPL.
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/cider-debug.el b/cider-debug.el
index 0cc808af..a3da0e09 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -25,7 +25,8 @@
;;; Code:
-(require 'nrepl-client)
+(require 'nrepl-dict)
+(require 'nrepl-client) ; `nrepl--mark-id-completed'
(require 'cider-interaction)
(require 'cider-client)
(require 'cider-util)