branch: elpa/helm
commit cc61ea3246a76bd148c302081029cb4ba071f3b9
Author: Stefan Monnier <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Avoid using eval+defvar, use set instead
---
 helm-core.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-core.el b/helm-core.el
index 557fc186f2..d032370249 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -99,7 +99,7 @@ DELAY seconds."
   (let ((funs functions)
         (iter (cl-gensym "helm-iter-key"))
         (timeout delay))
-    (eval (list 'defvar iter nil))
+    (set iter nil)
     (lambda ()
       (interactive)
       (helm-run-multi-key-command funs iter timeout))))

Reply via email to