Remove or and bound check and correct language

This commit is contained in:
James Nguyen 2018-01-06 11:18:46 -08:00 committed by James N
parent a90a08ceca
commit a591f9ecac
1 changed files with 3 additions and 4 deletions

View File

@ -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)