diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-15 18:34:38 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-15 18:34:38 -0800 |
commit | 3c5a7595153607497420deacfeef1a2cf31d4687 (patch) | |
tree | 7d0a690637a449fb2b3f1609f4ae1f6144fe0b9e /eval.c | |
parent | 53fa77578bcc3cebf491656d3c2e7d07c7493674 (diff) | |
download | txr-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.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); |