Change 32946 by [EMAIL PROTECTED] on 2008/01/11 10:34:41
Subject: [PATCH Porting/manicheck]
From: "Robin Barker" <[EMAIL PROTECTED]>
Date: Thu, 10 Jan 2008 18:48:04 -0000
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/Porting/manicheck#4 edit
Differences ...
==== //depot/perl/Porting/manicheck#4 (text) ====
Index: perl/Porting/manicheck
--- perl/Porting/manicheck#3~20236~ 2003-07-27 11:29:16.000000000 -0700
+++ perl/Porting/manicheck 2008-01-11 02:34:41.000000000 -0800
@@ -76,8 +76,8 @@
$" = "\n" if $l;
-unshift @xtra, "extra:" if @xtra;
-unshift @miss, "missing:" if @miss;
+unshift @xtra, "extra:" if @xtra && !$x;
+unshift @miss, "missing:" if @miss && !$m;
print "@xtra\n", if @xtra && !$m;
print "@miss\n" if @miss && !$x;
End of Patch.