Integration: Ignore some variables in macro

Tracking most recent evil commit: 8ce8b63c679d4da1085238c5df006bb7fbff04f1
This commit is contained in:
James Nguyen 2018-01-06 09:36:28 -08:00 committed by James N
parent ebd11ecd19
commit a90a08ceca
1 changed files with 2 additions and 0 deletions

View File

@ -361,6 +361,7 @@ the mark and entering `recursive-edit'."
(boundp 'ace-jump-mode-scope))
ace-jump-mode-scope
'window)))
(ignore ace-jump-mode-scope) ;; Make byte compiler happy.
(remove-hook 'pre-command-hook #'evil-visual-pre-command t)
(remove-hook 'post-command-hook #'evil-visual-post-command t)
(unwind-protect
@ -477,6 +478,7 @@ Based on `evil-collection-integration-enclose-ace-jump-for-motion'."
(boundp 'avy-all-windows))
avy-all-windows
nil)))
(ignore avy-all-windows) ;; Make byte compiler happy.
,@body))
(defmacro evil-collection-integration-define-avy-motion (command type)