summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index dcca5a6d..0dbe952c 100644
--- a/eval.c
+++ b/eval.c
@@ -327,7 +327,7 @@ static val eval_intrinsic(val form, val env)
val eval(val form, val env, val ctx_form)
{
type_check(env, ENV);
- debug_check(consp(form) ? form : ctx_form, env->e.vbindings, nil, nil, nil);
+ debug_check(consp(form) ? form : ctx_form, env, nil, nil, nil);
if (nullp(form)) {
return nil;