Re: False warning by warnings.pm

2004-11-23 Thread David le Blanc
On Mon, 22 Nov 2004 09:29:04 -0500, Bob Showalter <[EMAIL PROTECTED]> wrote: > Ramprasad A Padmanabhan wrote: > > I am using Net::Telnet in one of my perl scripts. Problem is every > > time it runs with use warnings It prints out warnings like > > > > Unrecognized escape \s passed through at ...

RE: False warning by warnings.pm

2004-11-22 Thread Bob Showalter
Ramprasad A Padmanabhan wrote: > I am using Net::Telnet in one of my perl scripts. Problem is every > time it runs with use warnings It prints out warnings like > > Unrecognized escape \s passed through at > > Where that line is > $t->waitfor("/ord\s*:\s*/"); > > Which is perfectly OK (

RE: False warning by warnings.pm

2004-11-22 Thread Laurent Coudeur
should it not be $t->waitfor("/ord\\s*:\\s*/"); Regards. Laurent. -Original Message- From: Ramprasad A Padmanabhan [mailto:[EMAIL PROTECTED] Sent: 22 November 2004 12:02 To: perl beginners Subject: False warning by warnings.pm I am using Net::Telnet in one of my perl scr

False warning by warnings.pm

2004-11-22 Thread Ramprasad A Padmanabhan
I am using Net::Telnet in one of my perl scripts. Problem is every time it runs with use warnings It prints out warnings like Unrecognized escape \s passed through at Where that line is $t->waitfor("/ord\s*:\s*/"); Which is perfectly OK ( I think ) Can someone tell how to get rid of t