diff options
author | Chip Salzenberg <chip@atlantic.net> | 1997-02-25 13:12:02 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-02-25 13:12:02 +1200 |
commit | 6dab866864880a00c46b7d744f81f4ffe2e2e259 (patch) | |
tree | 3cf51aca9a49ece9ecddf50091496813f1a38574 /lib/diagnostics.pm | |
parent | a24d8dfd085b8a93a9192688b8c3c59f4ae109e5 (diff) | |
download | perl-6dab866864880a00c46b7d744f81f4ffe2e2e259.tar.gz |
Follow up on elimination of $` $& $' in libraries
(this is the same change as commit efa45da9e2f446e4e79f819d2fa3a099e54425fa, but as applied)
Diffstat (limited to 'lib/diagnostics.pm')
-rw-r--r-- | lib/diagnostics.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/diagnostics.pm b/lib/diagnostics.pm index 0aa5b54195..26c31475a2 100644 --- a/lib/diagnostics.pm +++ b/lib/diagnostics.pm @@ -163,7 +163,6 @@ Tom Christiansen F<E<lt>tchrist@mox.perl.comE<gt>>, 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 $_; |