summaryrefslogtreecommitdiff
path: root/Porting
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 /Porting
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
Diffstat (limited to 'Porting')
-rw-r--r--Porting/checkAUTHORS.pl1
1 files changed, 1 insertions, 0 deletions
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:/) {