branch: master
commit 9dcb5f50f9cf0bf07356a8b3c81a27893d033da9
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
ivy.el: Fix compile warning
---
ivy.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/ivy.el b/ivy.el
index c82dbf5..97a3323 100644
--- a/ivy.el
+++ b/ivy.el
@@ -840,6 +840,12 @@ If the text hasn't changed as a result, forward to
`ivy-alt-done'."
(if ivy-tab-space " " ""))
t))))
+(defvar ivy-completion-beg nil
+ "Completion bounds start.")
+
+(defvar ivy-completion-end nil
+ "Completion bounds end.")
+
(defun ivy-immediate-done ()
"Exit the minibuffer with current input instead of current candidate."
(interactive)
@@ -1931,12 +1937,6 @@ behavior."
prompt collection predicate require-match initial-input
history (or def "") inherit-input-method))
-(defvar ivy-completion-beg nil
- "Completion bounds start.")
-
-(defvar ivy-completion-end nil
- "Completion bounds end.")
-
(declare-function mc/all-fake-cursors "ext:multiple-cursors-core")
(defun ivy-completion-in-region-action (str)