Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Init empty arrays using INITAv #100

Open
wants to merge 1 commit into
base: bc532
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/B/C/OverLoad/B/AV.pm
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ sub do_save {
}
else {
my $max = $av->MAX;
init()->sadd( "av_extend(%s, %d);", $sym, $max ) if $max > -1;
$av->add_to_init( $sym, '', $fill, $fullname ) if $max > -1;
}

$av->update_sv( $ix, $fullname, { fill => $fill } ); # could be using PADLIST, PADNAMELIST, or AV method for this.
Expand Down