summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-collection-vlf.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-collection-vlf.el b/evil-collection-vlf.el
index b6b908e..636f23d 100644
--- a/evil-collection-vlf.el
+++ b/evil-collection-vlf.el
@@ -31,12 +31,12 @@
(require 'vlf nil t)
(defvar vlf-mode-map)
+(declare-function vlf-change-batch-size "vlf")
(defun evil-collection-vlf-decrease-batch-size ()
"Decrease vlf batch size by factor of 2."
(interactive)
- (when (fboundp 'vlf-change-batch-size)
- (vlf-change-batch-size t)))
+ (vlf-change-batch-size t))
;;; Code:
(defun evil-collection-vlf-setup ()