From 77db7790191ef927d4fd560496a290bf47bcbd64 Mon Sep 17 00:00:00 2001 From: agentultra Date: Sat, 30 Nov 2013 10:29:41 -0500 Subject: [PATCH] Fix typo in ap-each --- hy/contrib/anaphoric.hy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hy/contrib/anaphoric.hy b/hy/contrib/anaphoric.hy index 13825b5..c9a0fef 100644 --- a/hy/contrib/anaphoric.hy +++ b/hy/contrib/anaphoric.hy @@ -25,7 +25,7 @@ (defmacro ap-each [lst &rest body] "Evaluate the body form for each element in the list." - `(foreach [it ~list] ~@body)) + `(foreach [it ~lst] ~@body)) (defmacro ap-each-while [lst form &rest body]