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

Chris Lattner lattner at cs.uiuc.edu
Sun Jun 22 15:26:07 PDT 2003


Changes in directory CVSROOT:

commit-diffs.pl updated: 1.34 -> 1.35

---
Log message:

Attempt to have the diffs include the C function this changes are made in


---
Diffs of the changes:

Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.34 CVSROOT/commit-diffs.pl:1.35
--- CVSROOT/commit-diffs.pl:1.34	Thu Apr 10 16:55:41 2003
+++ CVSROOT/commit-diffs.pl	Sun Jun 22 15:24:56 2003
@@ -109,12 +109,12 @@
   $subject .= "$m->{'filename'} ";
   if ($m->{'type'} eq 'add') {
     $msg .= "$m->{'filename'} added (r$m->{'newrev'})\n";
-    $diffs .= `cvs -Qf rdiff -r0 -r1.1 $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
+    $diffs .= `cvs -Qf rdiff  --show-c-function -r0 -r1.1 $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
   } elsif ($m->{'type'} eq 'rm') {
     $msg .= "$m->{'filename'} (r$m->{'oldrev'}) removed\n";
   } else {
     $msg .= "$m->{'filename'} updated: $m->{'oldrev'} -> $m->{'newrev'}\n";
-    $diffs .= `cvs -Qf rdiff -u -r $m->{'oldrev'} -r $m->{'newrev'} $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
+    $diffs .= `cvs -Qf rdiff --show-c-function -u -r $m->{'oldrev'} -r $m->{'newrev'} $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
   }
 }
 $msg .= "\n---\nLog message:\n\n" . join('', at logmessage);





More information about the llvm-commits mailing list