Skip to content
Snippets Groups Projects
Commit 91e007c8 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Fix syntax error from global regex search-replace.

parent aae550eb
No related branches found
No related tags found
No related merge requests found
......@@ -989,7 +989,7 @@ sub _merge_pairs {
if( defined $del_pair ) {
splice( @$lr, $next, 1 );
$lr_from = $self->{"_pair_$map_from"}->{uc($del_pair->{'from'}->{'id'})};
for( my $j=0; $j <= $#{$lr}_from; $j++ ) {
for( my $j=0; $j <= $#{$lr_from}; $j++ ) {
if( $lr_from->[$j] == $del_pair ) {
splice( @$lr_from, $j, 1 );
last;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment