summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2006-02-13 16:46:14 +0000
committerSteve Hay <SteveHay@planit.com>2006-02-13 16:46:14 +0000
commitbdb5e10ec6ba9fc705fa9c12a99747f280685d55 (patch)
tree76fd779a6941a802db06d20dbd18b577f996340c
parent1b94edb6b76d8ada85d9ab149002ee69a7ddf8b8 (diff)
downloadperl-bdb5e10ec6ba9fc705fa9c12a99747f280685d55.tar.gz
Teach checkAUTHORS.pl about Changelogs with leading tabs
in the log entries, and fix a malformed log entry in Changes5.005 p4raw-id: //depot/perl@27172
-rw-r--r--Changes5.0053
-rw-r--r--Porting/checkAUTHORS.pl1
2 files changed, 3 insertions, 1 deletions
diff --git a/Changes5.005 b/Changes5.005
index 82c6f0691e..4c6d0fae91 100644
--- a/Changes5.005
+++ b/Changes5.005
@@ -14129,7 +14129,8 @@ ____________________________________________________________________________
! doop.c
____________________________________________________________________________
[ 625] By: TimBunce on 1998/03/02 22:23:48
- Log: Branch: maint-5.004/perl
+ Log:
+ Branch: maint-5.004/perl
! doop.c
____________________________________________________________________________
[ 623] By: TimBunce on 1998/03/02 21:51:53
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl
index a4e7c3fb38..20c6e4d451 100644
--- a/Porting/checkAUTHORS.pl
+++ b/Porting/checkAUTHORS.pl
@@ -232,6 +232,7 @@ while (<>) {
my $prefix = " " x length $1;
LOG: while (<>) {
next if /^$/;
+ s/^\t/ /;
if (s/^$prefix//) {
$log .= $_;
} elsif (/^\s+Branch:/) {