summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-15 18:34:38 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-15 18:34:38 -0800
commit3c5a7595153607497420deacfeef1a2cf31d4687 (patch)
tree7d0a690637a449fb2b3f1609f4ae1f6144fe0b9e /eval.c
parent53fa77578bcc3cebf491656d3c2e7d07c7493674 (diff)
downloadtxr-3c5a7595153607497420deacfeef1a2cf31d4687.tar.gz
txr-3c5a7595153607497420deacfeef1a2cf31d4687.tar.bz2
txr-3c5a7595153607497420deacfeef1a2cf31d4687.zip
* eval.c (bind_macro_params): Bugfix: the :whole parameter must
capture the entire form, not just the arguments. (expand): Apply rlcp to the result of macro expansion, if it has not set up source code location. (eval_init): Register rlcp as intrinsic. * txr.1: Start of macro documentation. Documented rlcp.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index a43f31dc..6a97bb80 100644
--- a/eval.c
+++ b/eval.c
@@ -533,7 +533,7 @@ static val bind_macro_params(val env, val mac_env, val params, val form,
{
val new_env = make_env(nil, nil, env);
val err_sym = nil;
- val whole = params;
+ val whole = form;
val optargs = nil;
while (consp(params)) {
@@ -2084,6 +2084,8 @@ val expand(val form)
val mac_expand = expand_macro(form_ex, macro, make_env(nil, nil, nil));
if (mac_expand == form)
return form;
+ if (!source_loc(mac_expand))
+ rlcp(mac_expand, form);
return expand(mac_expand);
} else {
/* funtion call
@@ -3100,6 +3102,7 @@ void eval_init(void)
reg_fun(intern(lit("source-loc"), user_package), func_n1(source_loc));
reg_fun(intern(lit("source-loc-str"), user_package), func_n1(source_loc_str));
+ reg_fun(intern(lit("rlcp"), user_package), func_n2(rlcp));
reg_var(intern(lit("*self-path*"), user_package), &self_path);