[llvm-commits] CVS: CVSROOT/ commit-diffs.pl
Christopher Lattner
lattner at cs.uiuc.edu
Thu Sep 5 22:20:02 PDT 2002
Changes in directory CVSROOT:
commit-diffs.pl updated: 1.23 -> 1.24
---
Log message:
Extremely minor change so that a space is not inserted between the directory and the file list.
---
Diffs of the changes:
Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.23 CVSROOT/commit-diffs.pl:1.24
--- CVSROOT/commit-diffs.pl:1.23 Thu Sep 5 22:18:15 2002
+++ CVSROOT/commit-diffs.pl Thu Sep 5 22:19:11 2002
@@ -108,7 +108,7 @@
my $subject = "$changedir/";
foreach $m (@changeItems) {
- $subject .= " $m->{'filename'}";
+ $subject .= "$m->{'filename'} ";
if ($m->{'type'} eq 'add') {
$msg .= "$m->{'filename'} added (r$m->{'newrev'})\n";
} elsif ($m->{'type'} eq 'rm') {
More information about the llvm-commits
mailing list