diff options
Diffstat (limited to 'libtommath/booker.pl')
-rw-r--r-- | libtommath/booker.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libtommath/booker.pl b/libtommath/booker.pl index 5c77e53..49f1889 100644 --- a/libtommath/booker.pl +++ b/libtommath/booker.pl @@ -82,13 +82,16 @@ while (<IN>) { # scan till next end of comment, e.g. skip license while (<SRC>) { $text[$line++] = $_; - last if ($_ =~ /math\.libtomcrypt\.org/); + last if ($_ =~ /math\.libtomcrypt\.com/); } <SRC>; } $inline = 0; while (<SRC>) { + next if ($_ =~ /\$Source/); + next if ($_ =~ /\$Revision/); + next if ($_ =~ /\$Date/); $text[$line++] = $_; ++$inline; chomp($_); @@ -218,7 +221,7 @@ while (<IN>) { $str = "chapter eight"; } elsif ($a == 9) { $str = "chapter nine"; - } elsif ($a == 2) { + } elsif ($a == 10) { $str = "chapter ten"; } } else { |