summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2015-01-25 12:35:58 +0200
committerBozhidar Batsov <bozhidar@tradeo.com>2015-01-25 12:35:58 +0200
commit9fca7887e93e0af3d9c9a9aaa12df22278d99f1c (patch)
treed6bdb1bdfa0597dbf8f8202148c3fcb947b3718d
parent8bede86f152677f8acd46481e43ccd1e15187d91 (diff)
Move a few requires where they belong
-rw-r--r--cider-apropos.el2
-rw-r--r--cider-interaction.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/cider-apropos.el b/cider-apropos.el
index 37ee3167..718418b6 100644
--- a/cider-apropos.el
+++ b/cider-apropos.el
@@ -26,6 +26,8 @@
;;; Code:
(require 'cider-interaction)
+(require 'apropos)
+(require 'button)
(defconst cider-apropos-buffer "*cider-apropos*")
diff --git a/cider-interaction.el b/cider-interaction.el
index de810c3f..a9504892 100644
--- a/cider-interaction.el
+++ b/cider-interaction.el
@@ -45,8 +45,6 @@
(require 'cl-lib)
(require 'compile)
(require 'tramp)
-(require 'button)
-(require 'apropos)
(defconst cider-error-buffer "*cider-error*")
(defconst cider-read-eval-buffer "*cider-read-eval*")