From: Chip Salzenberg Date: Mon, 18 Nov 1996 06:06:58 +0000 (+1200) Subject: Kludge for bareword handles X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=66b5b9b719a73ccb69aa5b9b38c5ebad57f7e26a;p=p5sagit%2Fp5-mst-13.2.git Kludge for bareword handles Add 'require IO::Handle' at beginning of FileHandle.pm --- diff --git a/ext/FileHandle/FileHandle.pm b/ext/FileHandle/FileHandle.pm index d479dae..ada75a3 100644 --- a/ext/FileHandle/FileHandle.pm +++ b/ext/FileHandle/FileHandle.pm @@ -147,8 +147,7 @@ It will also croak() if accidentally called in a scalar context. =head1 SEE ALSO L, -L, -L +L. =head1 BUGS @@ -169,6 +168,8 @@ require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); +require IO::Handle; # Kludge for bareword handles + $VERSION = "1.00" ; @EXPORT = qw(_IOFBF _IOLBF _IONBF);