[llvm-commits] CVS: CVSROOT/commit-diffs.pl
Chris Lattner
lattner at cs.uiuc.edu
Mon Mar 15 23:22:01 PST 2004
Changes in directory CVSROOT:
commit-diffs.pl updated: 1.55 -> 1.56
---
Log message:
Don't transform Bug NN -> Bug NN: blah PRNN
then the PRNN into PRNN: blah PRNN again
---
Diffs of the changes: (+1 -1)
Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.55 CVSROOT/commit-diffs.pl:1.56
--- CVSROOT/commit-diffs.pl:1.55 Mon Mar 15 23:17:47 2004
+++ CVSROOT/commit-diffs.pl Mon Mar 15 23:21:47 2004
@@ -88,8 +88,8 @@
foreach $s (@loginfodata) {
if ($islogmessage) {
- $s =~ s|([bB][uU][gG]\s*([0-9]+))|$1: http://llvm.cs.uiuc.edu/PR$2 |g;
$s =~ s|([pP][rR]\s*([0-9]+))|$1: http://llvm.cs.uiuc.edu/PR$2 |g;
+ $s =~ s|([bB][uU][gG]\s*([0-9]+))|$1: http://llvm.cs.uiuc.edu/PR$2 |g;
@logmessage = (@logmessage, $s);
next;
}
More information about the llvm-commits
mailing list