summaryrefslogtreecommitdiffstats
path: root/autoload.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-10-13 06:57:48 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-10-13 06:57:48 -0700
commitae644e2046349d2fdb83da88a33bedb565b99dce (patch)
tree89b837c6b5cf2e645d20b05731e85186a72050d0 /autoload.c
parent3c4bf5fa931c0620473efe8530ed2de786292af5 (diff)
downloadtxr-ae644e2046349d2fdb83da88a33bedb565b99dce.tar.gz
txr-ae644e2046349d2fdb83da88a33bedb565b99dce.tar.bz2
txr-ae644e2046349d2fdb83da88a33bedb565b99dce.zip
New function: macroexpand-params.
* stdlib/pmac.tl (macroexpand-params): New function, implemented using newly exposed sys:expand-param-macro. * autoload.c (pmac_set_entries): Trigger pmac.tl autload on macroexpand-params symbol. * eval.c (eval_init): Register existing expand_param_macro function as sys:expand-param-macro. * txr.1: Documented. * stdlib/doc-syms.tl: Updated.
Diffstat (limited to 'autoload.c')
-rw-r--r--autoload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload.c b/autoload.c
index c8db544b..a3430a63 100644
--- a/autoload.c
+++ b/autoload.c
@@ -504,7 +504,7 @@ static val tagbody_instantiate(void)
static val pmac_set_entries(val fun)
{
val name[] = {
- lit("define-param-expander"), nil
+ lit("define-param-expander"), lit("macroexpand-params"), nil
};
autoload_set(al_fun, name, fun);
return nil;