diff options
| author | Justin Burkett <justin@burkett.cc> | 2018-01-03 22:16:05 -0500 |
|---|---|---|
| committer | Justin Burkett <justin@burkett.cc> | 2018-01-03 22:18:42 -0500 |
| commit | 65e18956b3ddf62b309244ee8ca64738a474d6c7 (patch) | |
| tree | 4a2ea31d90b4814b304a17b62ec7ff15a97108be | |
| parent | 9bebd449912f009923bb7128a58680e55e6ec52d (diff) | |
Fix compiler warning in previous commit
| -rw-r--r-- | evil-commands.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/evil-commands.el b/evil-commands.el index d676cb2..f2770ae 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -33,6 +33,7 @@ (require 'evil-jumps) (require 'flyspell) (require 'cl-lib) +(require 'reveal) ;;; Motions @@ -3396,7 +3397,7 @@ reveal.el. OPEN-SPOTS is a local version of `reveal-open-spots'." (evil-ex-substitute-hl (evil-ex-make-hl 'evil-ex-substitute)) (orig-point-marker (move-marker (make-marker) (point))) (end-marker (move-marker (make-marker) end)) - (use-reveal (and confirm (require 'reveal nil t))) + (use-reveal confirm) reveal-open-spots zero-length-match match-contains-newline |
