summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2010-09-11 11:37:04 +0100
committerTony Cook <tony@develop-help.com>2010-09-11 20:58:14 +1000
commit3d8e05a034fc6625a503b87c8ac336d4d84fb338 (patch)
treea60afffd2304a8aa9bf98db66b2f2415f35a1ba7 /toke.c
parent9ea12537a494a537e72f6853f48253349ee8d82d (diff)
downloadperl-3d8e05a034fc6625a503b87c8ac336d4d84fb338.tar.gz
fix MAD breakage caused by qw patch
ea25a9b2cf73948b1e8c5675de027e0ad13277bd broke MAD due to incorrect usage of the token-forcing mechanism.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/toke.c b/toke.c
index a7ec6122e7..b8694a6262 100644
--- a/toke.c
+++ b/toke.c
@@ -13993,6 +13993,7 @@ Perl_coerce_qwlist_to_paren_list(pTHX_ OP *qwlist)
op_free(qwlist);
}
else {
+ start_force(PL_curforce);
NEXTVAL_NEXTTOKE.opval = qwlist;
force_next(THING);
}