From: Nicholas Clark Date: Sat, 27 Jan 2007 14:03:01 +0000 (+0000) Subject: One last gv_fetchpv() that should be GV_ADD rather than TRUE. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7a6d04f4b4bf895ed78ad15e738aca75d88e3b8c;p=p5sagit%2Fp5-mst-13.2.git One last gv_fetchpv() that should be GV_ADD rather than TRUE. p4raw-id: //depot/perl@30030 --- diff --git a/toke.c b/toke.c index 8f6c5ce..e34f796 100644 --- a/toke.c +++ b/toke.c @@ -5533,7 +5533,7 @@ Perl_yylex(pTHX) } } if (probable_sub) { - gv = gv_fetchpv(PL_tokenbuf, TRUE, SVt_PVCV); + gv = gv_fetchpv(PL_tokenbuf, GV_ADD, SVt_PVCV); op_free(yylval.opval); yylval.opval = newCVREF(0, newGVOP(OP_GV, 0, gv)); yylval.opval->op_private |= OPpENTERSUB_NOPAREN;