X-Git-Url: http://git.shiar.net/gitweb.cgi/perl/plp/.git/blobdiff_plain/0f5e78a789961923b45cae1a881c655fff9e7283..55b5d8b2c5b2d13e40ed37f37ef54f0e1f37af4b:/PLP/Tie/Print.pm diff --git a/PLP/Tie/Print.pm b/PLP/Tie/Print.pm index 7563ba5..4c6983f 100644 --- a/PLP/Tie/Print.pm +++ b/PLP/Tie/Print.pm @@ -9,6 +9,8 @@ Just prints to stdout, but sends headers if not sent before. tie *HANDLE, 'PLP::Tie::Print'; +This module is part of the PLP Internals and probably not of much use to others. + =cut sub TIEHANDLE { @@ -19,7 +21,8 @@ sub WRITE { undef; } sub PRINT { my ($self, @param) = @_; - PLP::SendHeaders() unless $PLP::sentheaders; + return if @param == 1 and not length $param[0]; + PLP::sendheaders() unless $PLP::sentheaders; print STDOUT @param; select STDOUT; }