mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-25 13:29:29 +01:00
applets/gencstd23: fix paragraph diff special case for n1570
This commit is contained in:
parent
51eae56632
commit
43dec7b70f
4
applets/gencstd23.pl
vendored
4
applets/gencstd23.pl
vendored
@ -118,10 +118,8 @@ sub gen_data {
|
||||
|
||||
print STDERR "paragraph $p: [$t]\n" if $debug >= 3;
|
||||
|
||||
if ($input eq 'n1570.txt' && $this_section !~ /^(?:K.3.9.(?:2|3))/) {
|
||||
if ($p - $last_p != 1) {
|
||||
die "Paragraph diff invalid";
|
||||
}
|
||||
die "Paragraph diff invalid" unless ($input eq 'n1570.in' && $this_section =~ /^(?:K.3.9.(?:2|3))/);
|
||||
}
|
||||
|
||||
# check for footnotes
|
||||
|
@ -25,8 +25,8 @@ use PBot::Imports;
|
||||
# These are set by the /misc/update_version script
|
||||
use constant {
|
||||
BUILD_NAME => "PBot",
|
||||
BUILD_REVISION => 4566,
|
||||
BUILD_DATE => "2022-08-07",
|
||||
BUILD_REVISION => 4569,
|
||||
BUILD_DATE => "2022-08-08",
|
||||
};
|
||||
|
||||
sub initialize {}
|
||||
|
Loading…
Reference in New Issue
Block a user