b ugfix [ 953593 ] perl -MWebGUI -e "" fails
This commit is contained in:
parent
9caaefd88b
commit
cdcdd2094e
2 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
6.0.3
|
6.0.3
|
||||||
- Fixed a recursive style change bug.
|
- Fixed a recursive style change bug.
|
||||||
|
- Bugfix [ 953593 ] perl -MWebGUI -e "" fails
|
||||||
|
|
||||||
|
|
||||||
6.0.2
|
6.0.2
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ These functions are available from this package:
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|
||||||
|
our $parenthesis;
|
||||||
our $nestedMacro = qr /(\^ # Start with carat
|
our $nestedMacro = qr /(\^ # Start with carat
|
||||||
([^\^;()]+) # And one or more none-macro characters -tagged-
|
([^\^;()]+) # And one or more none-macro characters -tagged-
|
||||||
((?: # Followed by
|
((?: # Followed by
|
||||||
|
|
@ -57,7 +57,7 @@ our $nestedMacro = qr /(\^ # Start with carat
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
our $parenthesis = qr /\( # Start with '(',
|
$parenthesis = qr /\( # Start with '(',
|
||||||
(?: # Followed by
|
(?: # Followed by
|
||||||
(?>[^()]+) # Non-parenthesis
|
(?>[^()]+) # Non-parenthesis
|
||||||
|(??{ $parenthesis }) # Or a balanced parenthesis block
|
|(??{ $parenthesis }) # Or a balanced parenthesis block
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue