Skip to content

Commit 61fc316

Browse files
committed
makedef.pl: Use a name for $_
A future commit will refer to this further below; better to have a name than $_ for that.
1 parent cd2a023 commit 61fc316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

makedef.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,8 +796,8 @@ sub readvar {
796796
my ($embed_array) = setup_embed($ARGS{TARG_DIR});
797797
my $excludedre = $define{'NO_MATHOMS'} ? qr/[emiIsb]/ : qr/[emiIs]/;
798798

799-
foreach (@$embed_array) {
800-
my $embed= $_->{embed}
799+
foreach my $entry (@$embed_array) {
800+
my $embed= $entry->{embed}
801801
or next;
802802
my ($flags, $retval, $func, $args) = @{$embed}{qw(flags return_type name args)};
803803
next unless $func;

0 commit comments

Comments
 (0)