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

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 10 16:48:01 PDT 2003


Changes in directory CVSROOT:

commit-diffs.pl updated: 1.32 -> 1.33

---
Log message:

Removed extraneous semicolon in the command to show contents of newly added
files.


---
Diffs of the changes:

Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.32 CVSROOT/commit-diffs.pl:1.33
--- CVSROOT/commit-diffs.pl:1.32	Thu Apr 10 16:25:08 2003
+++ CVSROOT/commit-diffs.pl	Thu Apr 10 16:47:03 2003
@@ -109,7 +109,7 @@
   $subject .= "$m->{'filename'} ";
   if ($m->{'type'} eq 'add') {
     $msg .= "$m->{'filename'} added (r$m->{'newrev'})\n";
-    $diffs .= `cat $changedir/$m->{'filename'}; 2> /dev/null` . "\n\n";
+    $diffs .= `cat $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
   } elsif ($m->{'type'} eq 'rm') {
     $msg .= "$m->{'filename'} (r$m->{'oldrev'}) removed\n";
   } else {





More information about the llvm-commits mailing list