summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-06-05 07:21:02 -0700
committerKaz Kylheku <kaz@kylheku.com>2023-06-05 07:21:02 -0700
commit5d522e63dab8961b05393ac63c0a539b7a17762b (patch)
treea41bbfe485876de84c8cebcf95b0145acc92dd06
parent0996bce8417ca14e6c07b48a49de1c442a5a4ffb (diff)
downloadtxr-5d522e63dab8961b05393ac63c0a539b7a17762b.tar.gz
txr-5d522e63dab8961b05393ac63c0a539b7a17762b.tar.bz2
txr-5d522e63dab8961b05393ac63c0a539b7a17762b.zip
autoload: rename local variable.
* autoload.c (expander_let_set_entries): The expander-let symbol is in the usr package, registered via autoload_set, so the array should be called name and not sys_name.
-rw-r--r--autoload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload.c b/autoload.c
index 7f35223f..f90366d1 100644
--- a/autoload.c
+++ b/autoload.c
@@ -925,11 +925,11 @@ static val constfun_instantiate(void)
static val expander_let_set_entries(val fun)
{
- val sys_name[] = {
+ val name[] = {
lit("expander-let"),
nil
};
- autoload_set(al_fun, sys_name, fun);
+ autoload_set(al_fun, name, fun);
return nil;
}