Commit b7159d0b authored by terry%netscape.com's avatar terry%netscape.com

Ignore blanks when doing diff. In particular, this helps hide any

problems we may have with differing end-of-line characters.
parent ca036186
......@@ -253,7 +253,7 @@ foreach my $i (@ARGV) {
print FID $text;
close FID;
if (Different($old, $new)) {
system("diff -c $old $new > $diffs");
system("diff -c -b $old $new > $diffs");
my $tolist = fixaddresses([$::bug{'assigned_to'}, $::bug{'reporter'},
$::bug{'qa_contact'}]);
my $cclist = fixaddresses($::bug{'cclist'});
......
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