summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-25 08:38:40 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-25 08:38:40 +0300
commitad68a5616d6bbd6d8dde6c38e0bbda63d222ca1f (patch)
tree999f816138915d0c6ceeb0255e472a55a988d1b2
parent2df0e7ae87fd9a75dfb606d1dbfccf8fcda1b10e (diff)
Fix the build
I can't think of a simple way to deal with menus coming from other files that are added to cider-mode's menu. Those are the only reason why we require cider-test, cider-doc and cider-profile.
-rw-r--r--cider-mode.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/cider-mode.el b/cider-mode.el
index dbcee80d..2b62a644 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -33,10 +33,11 @@
(require 'clojure-mode)
(require 'cider-interaction)
-(require 'cider-test)
+(require 'cider-test) ; required only for the menu
(require 'cider-eldoc)
(require 'cider-resolve)
-(require 'cider-doc)
+(require 'cider-doc) ; required only for the menu
+(require 'cider-profile) ; required only for the menu
(require 'cider-completion)
(require 'subr-x)
(require 'cider-compat)