summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-24 15:21:37 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-24 15:21:37 +0300
commite1f920850da3c3449a575a266e1901c3e15ba436 (patch)
treecde8346e92c747f39f5cdfaee7dcfb20efcb59b2
parent77423c25a7d2637e2d04aba1fd6a2c8c3396da5f (diff)
Address a couple of compilation warnings
-rw-r--r--cider-common.el1
-rw-r--r--cider-completion.el1
2 files changed, 2 insertions, 0 deletions
diff --git a/cider-common.el b/cider-common.el
index 47188bfd..af72c9ec 100644
--- a/cider-common.el
+++ b/cider-common.el
@@ -86,6 +86,7 @@ INVERT is used to invert the semantics of the function `cider--should-prompt-for
map)
"Minibuffer keymap used for reading Clojure expressions.")
+(declare-function cider-complete-at-point "cider-completion")
(defun cider-read-from-minibuffer (prompt &optional value)
"Read a string from the minibuffer, prompting with PROMPT.
If VALUE is non-nil, it is inserted into the minibuffer as initial-input.
diff --git a/cider-completion.el b/cider-completion.el
index a582907c..8b46f9d5 100644
--- a/cider-completion.el
+++ b/cider-completion.el
@@ -30,6 +30,7 @@
(require 'cider-client)
(require 'cider-common)
+(require 'cider-eldoc)
(require 'nrepl-dict)
(defcustom cider-completion-use-context t