Subject: | Starting with Perl 5.25.1 : Unescaped left brace in regex is illegal in regex |
Unescaped left brace in regex is illegal in regex; marked by <-- HERE in m/\G{ <-- HERE / at YappParse.yp line 288.
Subject: | Parse-Yapp.diff |
--- YappParse.yp.orig 2001-05-20 11:19:53 UTC
+++ YappParse.yp
@@ -285,7 +285,7 @@ sub _Lexer {
return($1, [ $1, $lineno[0] ]);
};
- $$input=~/\G{/gc
+ $$input=~/\G\{/gc
and do {
my($level,$from,$code);
--- lib/Parse/Yapp/Parse.pm.orig 2001-05-20 11:19:57 UTC
+++ lib/Parse/Yapp/Parse.pm
@@ -880,7 +880,7 @@ sub _Lexer {
return($1, [ $1, $lineno[0] ]);
};
- $$input=~/\G{/gc
+ $$input=~/\G\{/gc
and do {
my($level,$from,$code);