diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-19 13:58:46 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-12-19 13:58:46 +0000 |
commit | 13a7998c934604b70722fbb6c3a73e74f3b8a490 (patch) | |
tree | 87ec67ca857d5c407cd563babe4ee753dbcd7037 /toke.c | |
parent | 5e49647a0859f6593db3487b4813b840236eca20 (diff) | |
download | perl-13a7998c934604b70722fbb6c3a73e74f3b8a490.tar.gz |
Make -E require 5.11 features
p4raw-id: //depot/perl@32648
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3654,7 +3654,7 @@ Perl_yylex(pTHX) } } if (PL_minus_E) - sv_catpvs(PL_linestr,"use feature ':5.10';"); + sv_catpvs(PL_linestr,"use feature ':5.11';"); sv_catpvs(PL_linestr, "\n"); PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = SvPVX(PL_linestr); PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr); |