mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-23 11:12:42 +01:00
compiler_vm: -paste and -nomain arguments no longer need to be first arguments; fix issue with replace
command
This commit is contained in:
parent
a6a3129171
commit
8d882a4240
@ -13,8 +13,8 @@ use warnings;
|
|||||||
# These are set automatically by the build/commit script
|
# These are set automatically by the build/commit script
|
||||||
use constant {
|
use constant {
|
||||||
BUILD_NAME => "PBot",
|
BUILD_NAME => "PBot",
|
||||||
BUILD_REVISION => 427,
|
BUILD_REVISION => 428,
|
||||||
BUILD_DATE => "2013-08-27",
|
BUILD_DATE => "2013-09-13",
|
||||||
};
|
};
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
@ -154,10 +154,10 @@ my $input = "";
|
|||||||
$input = $1 if $code =~ s/-(?:input|stdin)=(.*)$//i;
|
$input = $1 if $code =~ s/-(?:input|stdin)=(.*)$//i;
|
||||||
|
|
||||||
my $got_paste = undef;
|
my $got_paste = undef;
|
||||||
$got_paste = 1 if $code =~ s/\s*-paste\s*//i;
|
$got_paste = 1 if $code =~ s/(?<=\s)*-paste\s*//i;
|
||||||
|
|
||||||
my $got_nomain = undef;
|
my $got_nomain = undef;
|
||||||
$got_nomain = 1 if $code =~ s/\s*-nomain\s*//i;
|
$got_nomain = 1 if $code =~ s/(?<=\s)*-nomain\s*//i;
|
||||||
|
|
||||||
my $args = "";
|
my $args = "";
|
||||||
$args .= "$1 " while $code =~ s/^\s*(-[^ ]+)\s*//;
|
$args .= "$1 " while $code =~ s/^\s*(-[^ ]+)\s*//;
|
||||||
@ -321,7 +321,7 @@ if($code =~ m/^\s*(run|paste)\s*$/i) {
|
|||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($subcode =~ m/^\s*(and)?\s*replace\s*([^']+)?\s*'.*'\s*with\s*'.*'/i) {
|
if($subcode =~ m/^\s*(and)?\s*replace\s*([^']+)?\s*'.*'\s*with\s*'.*?'/i) {
|
||||||
$got_sub = 1;
|
$got_sub = 1;
|
||||||
my $modifier = 'first';
|
my $modifier = 'first';
|
||||||
|
|
||||||
@ -569,7 +569,7 @@ if($code =~ m/^\s*(run|paste)\s*$/i) {
|
|||||||
$previous_modifier = $modifier;
|
$previous_modifier = $modifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($got_sub and not $got_changes) {
|
if(not $got_changes) {
|
||||||
print "$nick: No replacements made.\n";
|
print "$nick: No replacements made.\n";
|
||||||
exit 0;
|
exit 0;
|
||||||
}
|
}
|
||||||
@ -961,6 +961,7 @@ if($output =~ m/^\s*$/) {
|
|||||||
$output =~ s/<No symbol table is loaded. Use the "file" command.>\s*//g;
|
$output =~ s/<No symbol table is loaded. Use the "file" command.>\s*//g;
|
||||||
$output =~ s/cc1: all warnings being treated as; errors//g;
|
$output =~ s/cc1: all warnings being treated as; errors//g;
|
||||||
$output =~ s/, note: this is the location of the previous definition//g;
|
$output =~ s/, note: this is the location of the previous definition//g;
|
||||||
|
$output =~ s/ called by gdb \(\) at statement: void gdb\(\) { __asm__\(""\); }//;
|
||||||
|
|
||||||
# remove duplicate warnings/infos
|
# remove duplicate warnings/infos
|
||||||
$output =~ s/(\[*.*warning:.*?\s*)\1/$1/g;
|
$output =~ s/(\[*.*warning:.*?\s*)\1/$1/g;
|
||||||
|
Loading…
Reference in New Issue
Block a user