diff options
author | Abigail <abigail@abigail.be> | 2017-01-16 11:44:30 +0100 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2017-01-16 19:18:17 +0100 |
commit | dc6e8de0c8eef348cabc76d23a98ce74e4b90cde (patch) | |
tree | 2eeb57c7e6acd2186005e11962a1fb00e6a9450d /pp_ctl.c | |
parent | 37398dc1a6d62d8d18b2db9ec44bca65d4091614 (diff) | |
download | perl-dc6e8de0c8eef348cabc76d23a98ce74e4b90cde.tar.gz |
There's an objection to fatalizing jumping into a construct.
This reverts commit 84b32f52b10f9912b40ef378cd0b01f4aff80630.
This reverts commit d30393aaade31b605724846a30a10dd1e96cd181.
We need more debate on this one; either we should undeprecate it,
or settle on an end-of-life version.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3019,7 +3019,7 @@ PP(pp_goto) if (*enterops && enterops[1]) { I32 i = enterops[1]->op_type == OP_ENTER && in_block ? 2 : 1; if (enterops[i]) - deprecate_fatal_in("5.28", "Use of \"goto\" to jump into a construct is deprecated. Its use will be fatal in Perl 5.28"); + deprecate("\"goto\" to jump into a construct"); } /* pop unwanted frames */ |