Re: bug in documentation

2001-12-02 Thread Gerald Richter
> > You made a small mistake in the documentation: > >... > You used $\ as input separator. Note this is output separator. The right form > is: > > local $/ = undef; > Yes, of course. Thanks for the spot > Have a nice day > > ps - when will you release 1.3 bugsfixed version? > I plan to do it r

bug in documentation

2001-11-30 Thread Lukas Zapletal
Hey Gerald! You made a small mistake in the documentation: EMBPERL_INPUT_FUNC EXAMPLE for an input function which does just the same as Embperl sub Input { my ($r, $in, $mtime) = @_ ; open F, $r -> filename or return NOT_FOUND ; local $\ = undef ; $$in = ; close F