summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-08 06:35:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-08 06:35:21 -0700
commit67e450455d7514d9a03da48e7830e59f98b6a958 (patch)
tree3f26061a9111d991213fcd5ab37dec874d23dc35 /eval.c
parent0ae2857a06ae7ccdd0b8efaef0e864e611215a89 (diff)
downloadtxr-67e450455d7514d9a03da48e7830e59f98b6a958.tar.gz
txr-67e450455d7514d9a03da48e7830e59f98b6a958.tar.bz2
txr-67e450455d7514d9a03da48e7830e59f98b6a958.zip
Don't report unbound var errors against wrong form.
The issue is that eval_intrinsic doesn't clear the last_form_evaled global around the evaluation of its forms. If a symbol is evaluated, and it is an unbound variable, the error is reported against some wrong form. * eval.c (eval_intrinsic): Set the value of last_form_evaled to nil before expanding and evaluating the form, then restore the value.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 929cddae..b4dd6bfe 100644
--- a/eval.c
+++ b/eval.c
@@ -952,8 +952,11 @@ val interp_fun(val env, val fun, struct args *args)
val eval_intrinsic(val form, val env)
{
- form = expand(form, nil);
- return eval(form, default_bool_arg(env), form);
+ val lfe_save = last_form_evaled;
+ val form_ex = (last_form_evaled = nil, expand(form, nil));
+ val ret = eval(form_ex, default_bool_arg(env), form);
+ last_form_evaled = lfe_save;
+ return ret;
}
static val do_eval(val form, val env, val ctx_form,