diff options
| author | James Nguyen <james@jojojames.com> | 2018-01-07 11:04:27 -0800 |
|---|---|---|
| committer | James N <james@jojojames.com> | 2018-01-09 18:53:12 -0800 |
| commit | 11c2c73f8656e35685970359a959d79571e3b1d6 (patch) | |
| tree | 0960ef78b3f8faa9117234554a0460fb144fd99d /evil-collection.el | |
| parent | 27b12460fc52540abc9101565ce831da9cd859fc (diff) | |
Display warning instead of a message
Diffstat (limited to 'evil-collection.el')
| -rw-r--r-- | evil-collection.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/evil-collection.el b/evil-collection.el index 8b6526b..af4c7e3 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -37,8 +37,13 @@ (if (featurep 'evil-integration) (if evil-want-integration - (message "Make sure to set `evil-want-integration' to nil before loading evil or evil-collection.") - (message "`evil-want-integration' was set to nil but not before loading evil.")) + (display-warning + '(evil-collection) + "Make sure to set `evil-want-integration' to nil before loading evil\ +or evil-collection.") + (display-warning + '(evil-collection) + "`evil-want-integration' was set to nil but not before loading evil.")) (require 'evil-collection-integration)) (defgroup evil-collection nil |
