summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eval.c9
-rw-r--r--share/txr/stdlib/compiler.tl2
2 files changed, 6 insertions, 5 deletions
diff --git a/eval.c b/eval.c
index 81b75a3f..405851f1 100644
--- a/eval.c
+++ b/eval.c
@@ -1838,9 +1838,9 @@ static val op_each(val form, val env)
val body = args;
val collect = eq(each, collect_each_s);
val append = eq(each, append_each_s);
- val bindings = if3(vars,
- get_bindings(vars, env),
- env->e.vbindings);
+ val bindings = if3(vars == t,
+ env->e.vbindings,
+ get_bindings(vars, env));
val iters = mapcar(iter_from_binding_f, bindings);
list_collect_decl (collection, ptail);
@@ -3073,7 +3073,8 @@ static val me_each(val form, val menv)
(void) menv;
return list(if3(star, let_star_s, let_s), vars,
cons(each_op_s, cons(eff_each,
- cons(if2(star || specials_occur, var_syms),
+ cons(if3(!vars || star || specials_occur,
+ var_syms, t),
args))), nao);
}
diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl
index 36e33007..f245e9f5 100644
--- a/share/txr/stdlib/compiler.tl
+++ b/share/txr/stdlib/compiler.tl
@@ -1379,7 +1379,7 @@
(defun expand-each (form env)
(mac-param-bind form (op each-type vars . body) form
- (unless vars
+ (when (eq vars t)
(set vars [mapcar car env.vb]))
(let* ((gens (mapcar (ret (gensym)) vars))
(out (if (member each-type '(collect-each append-each))