From a8de93fcc5c9a63482bd6461574750b470af5fa1 Mon Sep 17 00:00:00 2001 From: "jouni%heikniemi.net" <> Date: Thu, 13 May 2004 14:17:43 +0000 Subject: Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin. --- globals.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'globals.pl') diff --git a/globals.pl b/globals.pl index 7439940c3..7c1c9eb93 100644 --- a/globals.pl +++ b/globals.pl @@ -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); -- cgit v1.2.3-24-g4f1b