Commit a8de93fc authored by jouni%heikniemi.net's avatar jouni%heikniemi.net

Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten…

Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin.
parent b1317e9f
......@@ -1409,12 +1409,12 @@ sub DiffStrings {
# that were removed; @new contains ones that got added.
foreach my $oldv (@old) {
foreach my $newv (@new) {
next if ($newv eq '');
if ($oldv eq $newv) {
$newv = $oldv = '';
foreach my $newv (@new) {
next if ($newv eq '');
if ($oldv eq $newv) {
$newv = $oldv = '';
}
}
}
}
my $removed = join (", ", grep { $_ ne '' } @old);
my $added = join (", ", grep { $_ ne '' } @new);
......
Markdown is supported
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