mirror of
https://github.com/bitcoin/bips.git
synced 2026-03-09 15:53:54 +00:00
process: Increase title limit
This commit is contained in:
@@ -159,7 +159,7 @@ while (++$bipnum <= $topbip) {
|
||||
} elsif ($field eq 'Title') {
|
||||
$title = $val;
|
||||
my $title_len = length($title);
|
||||
die "$fn has too-long Title ($title_len > 44 char max)" if $title_len > 44 and not exists $TolerateTitleTooLong{$bipnum};
|
||||
die "$fn has too-long Title ($title_len > 50 char max)" if $title_len > 50 and not exists $TolerateTitleTooLong{$bipnum};
|
||||
} elsif ($field eq 'Authors') {
|
||||
$val =~ m/^(\S[^<@>]*\S) \<([^@>]*\@[\w.-]+\.\w+)\>$/ or die "Malformed Authors line in $fn";
|
||||
my ($authorname, $authoremail) = ($1, $2);
|
||||
|
||||
Reference in New Issue
Block a user