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 | 872fb35a878a0a4d6df4f48ce3683eb432db7a31 (patch) | |
tree | a41bbfe485876de84c8cebcf95b0145acc92dd06 /autoload.c | |
parent | d654390f21bc0e37addd60646f85999f0dc99a6c (diff) | |
download | txr-872fb35a878a0a4d6df4f48ce3683eb432db7a31.tar.gz txr-872fb35a878a0a4d6df4f48ce3683eb432db7a31.tar.bz2 txr-872fb35a878a0a4d6df4f48ce3683eb432db7a31.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.
Diffstat (limited to 'autoload.c')
-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; } |