use Strict causing brain damage

2002-03-17 Thread Puneet Kishor
can anyone tell me what on earth these messages in my httpd/error_log mean. [Sun Mar 17 22:51:30 2002] Strict.pm: Subroutine bits redefined at /System/Library/Perl/Strict.pm line 101. [Sun Mar 17 22:51:30 2002] Strict.pm: Subroutine import redefined at /System/Library/Perl/Strict.pm line 107.

Re: use Strict causing brain damage

2002-03-18 Thread Ken Williams
Puneet, You should be typing 'use strict;', not 'use Strict;'. Perhaps the filesystem is returning the contents of Strict.pm and perl is losing track of it in %INC. On Sunday, March 17, 2002, at 10:54 PM, Puneet Kishor wrote: > can anyone tell me what on earth these messages in my httpd/er

Re: use Strict causing brain damage

2002-03-18 Thread Puneet Kishor
thanks Ken, for saving me from perlobotomy. use strict works. phew! wonder what the heck use Strict was... case gremlins. pk/ On Monday, March 18, 2002, at 08:12 AM, Ken Williams wrote: > Puneet, > > You should be typing 'use strict;', not 'use Strict;'. Perhaps the > filesystem is return

Re: use Strict causing brain damage

2002-03-19 Thread Craig S. Cottingham
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday, March 18, 2002, at 08:55 , Puneet Kishor wrote: > thanks Ken, for saving me from perlobotomy. use strict works. > > phew! > > wonder what the heck use Strict was... case gremlins. > > On Monday, March 18, 2002, at 08:12 AM, Ken Williams w