diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-06-05 07:21:02 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-06-05 07:21:02 -0700 |
commit | 5d522e63dab8961b05393ac63c0a539b7a17762b (patch) | |
tree | a41bbfe485876de84c8cebcf95b0145acc92dd06 | |
parent | 0996bce8417ca14e6c07b48a49de1c442a5a4ffb (diff) | |
download | txr-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |