summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2007-08-29 17:04:53 -0400
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-08-30 13:49:14 +0000
commitfe5bfecd71ca735f83568f7bc2b9f22cc82e3d61 (patch)
tree1fbf396647db987f0166de4ee32bf04f3c6c5c25 /op.c
parent0cb1540ad85637e5abb7372876a8c85c855a7427 (diff)
downloadperl-fe5bfecd71ca735f83568f7bc2b9f22cc82e3d61.tar.gz
misc blead stuff
Message-ID: <46D617B5.3000002@iki.fi> p4raw-id: //depot/perl@31765
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index ada5a3de1a..015f26f908 100644
--- a/op.c
+++ b/op.c
@@ -3971,7 +3971,7 @@ Perl_newASSIGNOP(pTHX_ I32 flags, OP *left, I32 optype, OP *right)
PL_modcount = 0;
/* Grandfathering $[ assignment here. Bletch.*/
/* Only simple assignments like C<< ($[) = 1 >> are allowed */
- PL_eval_start = (left->op_type == OP_CONST) ? right : 0;
+ PL_eval_start = (left->op_type == OP_CONST) ? right : NULL;
left = mod(left, OP_AASSIGN);
if (PL_eval_start)
PL_eval_start = 0;