In the course of refactoring Configure.pl, I notice that it uses one of
the $ENGLISH variables -- $OUTPUT_AUTOFLUSH.
Does Parrot have any policy one way or the other on use of these
variables as opposed to their "punctuation variables" equivalents?
For reference: Here's the ack:
[latest] 538 $ ack no_match_vars
config/gen/platform.pm
22:use English qw( -no_match_vars );
Configure.pl
262:use English qw( -no_match_vars );
t/distro/test_file_coverage.t
10:use English qw( -no_match_vars );
t/harness
94:use English qw( -no_match_vars );
kid51