Allow quoted ";"
Leftover line of code from an earlier attempt.
This commit is contained in:
parent
0de7e2dda6
commit
573731cb61
1 changed files with 2 additions and 6 deletions
8
revbank
8
revbank
|
@ -17,7 +17,7 @@ use RevBank::Global;
|
||||||
use RevBank::Messages;
|
use RevBank::Messages;
|
||||||
use RevBank::Cart;
|
use RevBank::Cart;
|
||||||
|
|
||||||
our $VERSION = "5.0.0";
|
our $VERSION = "5.0.1";
|
||||||
our %HELP1 = (
|
our %HELP1 = (
|
||||||
"abort" => "Abort the current transaction",
|
"abort" => "Abort the current transaction",
|
||||||
);
|
);
|
||||||
|
@ -57,11 +57,7 @@ sub split_input($input) {
|
||||||
return \$pos if $pos < length($input);
|
return \$pos if $pos < length($input);
|
||||||
|
|
||||||
# End of string reached
|
# End of string reached
|
||||||
for my $term (@terms) {
|
s/\\(.)/$1/g for @terms;
|
||||||
$term =
|
|
||||||
$term eq ';' ? "\0SEPARATOR"
|
|
||||||
: $term =~ s/\\(.)/$1/gr;
|
|
||||||
}
|
|
||||||
return @terms;
|
return @terms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue