diff options
author | Karl Williamson <khw@cpan.org> | 2019-11-11 21:48:46 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-11-11 22:02:45 -0700 |
commit | be45a1e1e43579d38b8161de4c42f27ea053a20f (patch) | |
tree | e08a56cdd0c7efe633a2c1b85930d616ba601eb4 /t | |
parent | 3e15256759677e063c90863c42692e6ec449f472 (diff) | |
download | perl-be45a1e1e43579d38b8161de4c42f27ea053a20f.tar.gz |
PATCH: [gh #17185] Improper 'unescaped lbrace' msg
This warning is simply deleted. The possible places where an unescaped
left brace is illegal has been scaled back to avoid breaking more
existing code, and this context will remain legal.
Diffstat (limited to 't')
-rw-r--r-- | t/re/reg_mesg.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/re/reg_mesg.t b/t/re/reg_mesg.t index 6136f6a927..aa7e4554f5 100644 --- a/t/re/reg_mesg.t +++ b/t/re/reg_mesg.t @@ -701,7 +701,6 @@ my @deprecated = ( '/^{/' => "", '/foo|{/' => "", '/foo|^{/' => "", - '/foo({bar)/' => 'Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through {#} m/foo({{#}bar)/', '/foo(:?{bar)/' => "", '/\s*{/' => "", '/a{3,4}{/' => "", |