diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-27 19:31:56 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-27 19:31:56 +0000 |
commit | 2cd48dfddda7cedd271f0adfac2ed9f58f10189b (patch) | |
tree | 299f80f882148b8df36f17d0d19dfa9552fad912 /toke.c | |
parent | 1f257c956c5d42ce792dd5e0f3badf9851cef49c (diff) | |
download | perl-2cd48dfddda7cedd271f0adfac2ed9f58f10189b.tar.gz |
"Automate" change 32648 (ensure that -E always loads the latest
features)
p4raw-id: //depot/perl@32744
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3654,7 +3654,8 @@ Perl_yylex(pTHX) } } if (PL_minus_E) - sv_catpvs(PL_linestr,"use feature ':5.11';"); + sv_catpvs(PL_linestr, + "use feature ':5." STRINGIFY(PERL_VERSION) "';"); sv_catpvs(PL_linestr, "\n"); PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr); PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr); |