Subject: | $last_handle not defined in sub _start (causes warning) |
Change line:
396 $ref_self->append_str("\n") if($last_handle eq '_start');
to:
396 $ref_self->append_str("\n") if(defined($last_handle) && ($last_handle eq '_start'));