From a591f9ecacc1114c3cd786d864e97a74f6b2dd9e Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Sat, 6 Jan 2018 11:18:46 -0800 Subject: [PATCH] Remove or and bound check and correct language --- evil-collection.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/evil-collection.el b/evil-collection.el index d445684..df203a5 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -34,10 +34,9 @@ ;;; Code: ;; FIXME: Is this the best way to do this? -(when (or - (not (boundp 'evil-want-integration)) - (bound-and-true-p evil-want-integration)) - (message "evil-want-integration should be disabled before `evil' is required.")) +(when (bound-and-true-p evil-want-integration) + (message + "Make sure to set ~evil-want-integration~ before loading evil or evil-collection.")) (require 'evil) (require 'evil-collection-integration)