diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-27 14:03:01 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-27 14:03:01 +0000 |
commit | 7a6d04f4b4bf895ed78ad15e738aca75d88e3b8c (patch) | |
tree | c3c65bf2ad42341d7ab93d2be757e2200b42c256 /toke.c | |
parent | bf070237479de3d22c665ba1e87e55b6d8e595f0 (diff) | |
download | perl-7a6d04f4b4bf895ed78ad15e738aca75d88e3b8c.tar.gz |
One last gv_fetchpv() that should be GV_ADD rather than TRUE.
p4raw-id: //depot/perl@30030
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |