|
Posted by M.J.T. Guy on April 10, 2006, 12:51 pm
Please log in for more thread options
>The output of
>
>perl -Mstrict -MEnglish -MO=Deparse -e '$OUTPUT_AUTOFLUSH=1'
>
>does contain a 'use strict' but does not contain a 'use English'. Is
>that OK?
perl -Mstrict -MEnglish -MO=Deparse -e '$OUTPUT_AUTOFLUSH=1'
use strict 'refs';
$OUTPUT_AUTOFLUSH = 1;
-e syntax OK
That isn't equivalent to the input program - $OUTPUT_AUTOFLUSH isn't
declared. So that's a bug - report with perlbug if you're
enthusiastic.
Mike Guy
|