From 872fb35a878a0a4d6df4f48ce3683eb432db7a31 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 5 Jun 2023 07:21:02 -0700 Subject: 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. --- autoload.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autoload.c') 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; } -- cgit v1.2.3