summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-25 09:44:51 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-25 09:44:51 +0300
commitac9cb611f422f1133a9520efa469687c0cd3af18 (patch)
tree51d759d27ba77d8b51067322316819b58dc04e0e /cider-mode.el
parent02dc9dba9f58927b97a4367f0068934ea1b5dcfd (diff)
[Fix #2203] Rename cider-interaction.el to cider-eval.el
All of the non-eval functionality was removed, which marks the end of the process of breaking up the old file. Down the road we may opt to break down cider-eval into some core functionality and extra functionality, as many of the eval commands there are kind of "exotic", but that's not that important at this point.
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-mode.el b/cider-mode.el
index 2b62a644..85095f3a 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -32,7 +32,7 @@
;;; Code:
(require 'clojure-mode)
-(require 'cider-interaction)
+(require 'cider-eval)
(require 'cider-test) ; required only for the menu
(require 'cider-eldoc)
(require 'cider-resolve)
@@ -122,7 +122,7 @@ the buffer should appear."
(cider--switch-to-repl-buffer repl set-namespace)))
(user-error "No linked REPL")))
-(declare-function cider-load-buffer "cider-interaction")
+(declare-function cider-load-buffer "cider-eval")
(defun cider-load-buffer-and-switch-to-repl-buffer (&optional set-namespace)
"Load the current buffer into the matching REPL buffer and switch to it.