summaryrefslogtreecommitdiff
path: root/cider-repl.el
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2016-02-07 14:07:26 +0100
committerRoman Scherer <roman@burningswell.com>2016-02-07 14:15:00 +0100
commita5df825fa2f57793f3df1117f9ad4a9e20b6a458 (patch)
tree74201918b90319e60f3a5765e9c33aa9272d160d /cider-repl.el
parentfb941d404384dd56a6f9e7d3f9587ff90e4974fd (diff)
Require cider-test in cider-repl
When loading cider the following error occurs: `Symbol's value as variable is void: cider-test-menu` This happens because the `cider-repl.el` file uses the symbol `cider-test-menu` from the `cider-test.el` file, but doesn't require it. This patch fixes the problem.
Diffstat (limited to 'cider-repl.el')
-rw-r--r--cider-repl.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/cider-repl.el b/cider-repl.el
index 58054fc4..11cb7f8c 100644
--- a/cider-repl.el
+++ b/cider-repl.el
@@ -36,6 +36,7 @@
(require 'cider-common)
(require 'cider-compat)
(require 'cider-util)
+(require 'cider-test)
(require 'clojure-mode)
(require 'easymenu)