aboutsummaryrefslogtreecommitdiff
path: root/evil.el
diff options
context:
space:
mode:
authorjustbur <justin@burkett.cc>2016-03-10 09:49:03 -0500
committerjustbur <justin@burkett.cc>2016-03-10 09:49:03 -0500
commitbe53e20f783e61afd66ae8d6f8ce3b985a586e2b (patch)
tree535b03ed52abc417c4485b37fc12b03d67981253 /evil.el
parentbe983280ec671fae000e2323e7e1f961eabf93d5 (diff)
Move definition of evil-mode
evil-mode was defined last in the loading sequence, after an advice had been defined for it, which raised a warning at load time. There does not seem to be any reason to defer defining evil-mode to the end of the load sequence as it just defines a minor mode and all of the constituent functions have been defined at this point.
Diffstat (limited to 'evil.el')
-rw-r--r--evil.el4
1 files changed, 0 insertions, 4 deletions
diff --git a/evil.el b/evil.el
index ae4fab4..56bcdc0 100644
--- a/evil.el
+++ b/evil.el
@@ -136,10 +136,6 @@
(run-hooks 'evil-after-load-hook)
-;;;###autoload
-(define-globalized-minor-mode evil-mode
- evil-local-mode evil-initialize)
-
(provide 'evil)
;;; evil.el ends here