diff options
author | Zefram <zefram@fysh.org> | 2012-05-25 22:25:21 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2012-05-25 22:25:59 +0100 |
commit | 417a992d4dc78be79e44d19e029d9742d0334128 (patch) | |
tree | 41e4ecf92455ed85c3c764f7544ce48c65a9be16 /toke.c | |
parent | eb3d0a5826dc4202bd1ef751f86b4fa666f52d84 (diff) | |
download | perl-417a992d4dc78be79e44d19e029d9742d0334128.tar.gz |
remove deprecated qw-as-parens behaviour
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -11629,23 +11629,6 @@ Perl_parse_stmtseq(pTHX_ U32 flags) return stmtseqop; } -void -Perl_munge_qwlist_to_paren_list(pTHX_ OP *qwlist) -{ - PERL_ARGS_ASSERT_MUNGE_QWLIST_TO_PAREN_LIST; - deprecate("qw(...) as parentheses"); - force_next((4<<24)|')'); - if (qwlist->op_type == OP_STUB) { - op_free(qwlist); - } - else { - start_force(PL_curforce); - NEXTVAL_NEXTTOKE.opval = qwlist; - force_next(THING); - } - force_next((2<<24)|'('); -} - /* * Local variables: * c-indentation-style: bsd |