in reply to Flushing the print buffers.
Don't really understand that code
I use the more readable
use IO::Handle qw( ); # For autoflush OUTPUT_HANDLE->autoflush(1);
If you want to flush without turning on autoflush,
use IO::Handle qw( ); # For flush OUTPUT_HANDLE->flush();
(You only need to load IO::Handle once in your program, not everytime autoflush or flush are called.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Flushing the print buffers.
by lidden (Curate) on Feb 21, 2008 at 23:15 UTC | |
by ikegami (Patriarch) on Feb 22, 2008 at 00:07 UTC | |
by lidden (Curate) on Feb 22, 2008 at 00:37 UTC | |
by almut (Canon) on Feb 22, 2008 at 00:22 UTC |