From f3e59cad188525aef74248bf1b1bb18de15814e6 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 14 Dec 2025 03:56:48 -0700 Subject: [PATCH] embed.pl: Rename variable The new name reflects the source of the data being examined. --- regen/embed.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regen/embed.pl b/regen/embed.pl index 8d3d1e4f30..c97d072a5b 100755 --- a/regen/embed.pl +++ b/regen/embed.pl @@ -4847,7 +4847,7 @@ sub process_apidoc_lines { } sub find_undefs { - my $all = shift; # embed.fnc data + my $fnc = shift; # embed.fnc data # This program attempts to enforce macro visibility restrictions outside # core. This subroutine finds the symbols that need to be undefined when @@ -4862,7 +4862,7 @@ sub find_undefs { # default, unless overridden by a visibility flag. #ifdefs can further # restrict the visibility. - foreach my $entry ($all->@*) { + foreach my $entry ($fnc->@*) { # Only lines that have this are interesting to us. Lines that don't # have it are typically '#if' lines in the file. (These are