[llvm-commits] CVS: CVSROOT/commit-diffs.pl

Chris Lattner lattner at cs.uiuc.edu
Tue Oct 7 10:03:02 PDT 2003


Changes in directory CVSROOT:

commit-diffs.pl updated: 1.49 -> 1.50

---
Log message:

Try again


---
Diffs of the changes:  (+0 -0)

Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.49 CVSROOT/commit-diffs.pl:1.50
--- CVSROOT/commit-diffs.pl:1.49	Mon Oct  6 23:02:50 2003
+++ CVSROOT/commit-diffs.pl	Tue Oct  7 10:02:24 2003
@@ -124,8 +124,8 @@
 my $pluses = 0;
 my $minuses = 0;
 foreach my $line (split /\n/, $diffs) {
-  if (!$line =~ /^\+\+\+ /) {
-    if (!$line =~ /^\-\-\- /) {
+  if ($line !~ /^\+\+\+ /) {
+    if ($line !~ /^\-\-\- /) {
       $pluses++ if $line =~ /^\+/;
       $minuses++ if $line =~ /^\-/;
     }





More information about the llvm-commits mailing list