From: M.J.T. Guy Date: Fri, 28 Feb 1997 13:59:42 +0000 (+0000) Subject: Follow up on elimination of $` $& $' in libraries X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=efa45da9e2f446e4e79f819d2fa3a099e54425fa;p=p5sagit%2Fp5-mst-13.2.git Follow up on elimination of $` $& $' in libraries Ilya Zakharevich wrote > $' $` $& eliminated from all the known *.pm. Close, but you overlooked the 'use English' in diagnostics.pm. See additional patch below. p5p-msgid: --- diff --git a/lib/diagnostics.pm b/lib/diagnostics.pm index 0aa5b54..26c3147 100644 --- a/lib/diagnostics.pm +++ b/lib/diagnostics.pm @@ -163,7 +163,6 @@ Tom Christiansen Ftchrist@mox.perl.comE>, 25 June 1995. =cut require 5.001; -use English; use Carp; use Config; @@ -177,7 +176,7 @@ else { $DEBUG ||= 0; my $WHOAMI = ref bless []; # nobody's business, prolly not even mine -$OUTPUT_AUTOFLUSH = 1; +$| = 1; local $_;