diff options
author | jouni%heikniemi.net <> | 2004-05-13 14:17:43 +0000 |
---|---|---|
committer | jouni%heikniemi.net <> | 2004-05-13 14:17:43 +0000 |
commit | a8de93fcc5c9a63482bd6461574750b470af5fa1 (patch) | |
tree | dc002a23fc1564b1cddfa6ebc7e994a7f5c5512e | |
parent | b1317e9fa0f343c92577ce729eb5abee0878b59a (diff) | |
download | bugs-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar bugs-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar.gz bugs-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar.bz2 bugs-a8de93fcc5c9a63482bd6461574750b470af5fa1.tar.xz bugs-a8de93fcc5c9a63482bd6461574750b470af5fa1.zip |
Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin.
-rw-r--r-- | globals.pl | 10 |
1 files changed, 5 insertions, 5 deletions
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); |