This commit is contained in:
Pragmatic Software 2018-03-11 19:27:29 -07:00
parent 5a28569b26
commit c6082ba467
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@
use strict;
use warnings;
use lib ".";
use Parse::RecDescent;
use Getopt::Std;
use Data::Dumper;
@ -84,6 +86,7 @@ foreach my $arg (@ARGV) {
$output =~ s/the function a generic-selection/the function resulting from a generic-selection/g;
$output =~ s/\.\s+Then exit switch block/ and then exit switch block/g;
$output =~ s/,\././g;
$output =~ s/of unspecified length //g;
while($output =~ s/const const/const/g){};
foreach my $quote (@quotes) {

View File

@ -15,6 +15,7 @@ my $VERSION = "1.0.0";
use strict;
use warnings;
use lib ".";
use PBot::PBot;
# Be sure to set $bothome to the location PBot was extracted (default assumes ~/pbot).