Skip to content

Commit ae37b2a

Browse files
committed
fix byte compilation warning
1 parent 17a42fc commit ae37b2a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

evil-easymotion.el

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,12 @@
167167
#'evilem--default-collect-postprocess)
168168
points)))
169169

170-
(defun evilem--compute-inclusivity (funcs)
171-
(when (and (= (length funcs) 1)
172-
(evil-has-command-properties-p (car funcs)))
173-
`(setq evil-this-type
174-
',(evil-get-command-property (car funcs) :type))))
170+
(eval-and-compile
171+
(defun evilem--compute-inclusivity (funcs)
172+
(when (and (= (length funcs) 1)
173+
(evil-has-command-properties-p (car funcs)))
174+
`(setq evil-this-type
175+
',(evil-get-command-property (car funcs) :type)))))
175176

176177
(cl-defmacro evilem-make-motion (name
177178
funcs

0 commit comments

Comments
 (0)