diff options
| author | Axel Forsman <axelsfor@gmail.com> | 2023-06-25 17:10:04 +0200 |
|---|---|---|
| committer | Axel Forsman <axelsfor@gmail.com> | 2023-06-25 17:36:31 +0200 |
| commit | 4d0088dc669be6e06cf25340f8935db5eaca2a81 (patch) | |
| tree | 8970d995fa564f4faa19a265ac4486d326417793 /evil-core.el | |
| parent | 45a10ff11317327d7a3fca56bf05c0bc36291aa8 (diff) | |
Small cleanups
* Deprecate evil-loop since it is too niche, and manages makes
evil-motion-loop less readable.
* Use separate setq-local calls for each variable/value pair, since
the combined form does not exist in Emacs versions <=25.3.
Diffstat (limited to 'evil-core.el')
| -rw-r--r-- | evil-core.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-core.el b/evil-core.el index b1f5fb0..fae8bcd 100644 --- a/evil-core.el +++ b/evil-core.el @@ -120,8 +120,8 @@ (cl-pushnew 'evil-mode-map-alist emulation-mode-map-alists) (evil-initialize-local-keymaps) (when (minibufferp) - (setq-local evil-default-state 'insert - evil-echo-state nil)) + (setq-local evil-default-state 'insert) + (setq-local evil-echo-state nil)) (setq evil-input-method current-input-method) (evil-initialize-state) (add-hook 'input-method-activate-hook #'evil-activate-input-method t t) |
