deprecated our() indicated in perldoc of Getopt::Std

2001-04-20 Thread Alan E. Derhaag
I upgraded to v5.6.1 of perl and viewed the documentation for the Getopt::Std as I wasn't familiar with its use for command line arguments on a new install function I was building. The docs indicate use of our( $opt_foo, $opt_bar ) should 'use strict vars' be in use. I wasn't familiar with this

Re: deprecated our() indicated in perldoc of Getopt::Std

2001-04-20 Thread Paul Johnson
On Fri, Apr 20, 2001 at 02:36:32PM -0700, Alan E. Derhaag wrote: I upgraded to v5.6.1 of perl and viewed the documentation for the Getopt::Std as I wasn't familiar with its use for command line arguments on a new install function I was building. The docs indicate use of our( $opt_foo,

Re: deprecated our() indicated in perldoc of Getopt::Std

2001-04-20 Thread ___cliff rayman___
1) 'our' is not deprecated. it is new. i know it was in 5.6.0, not sure if it was in earlier than that. u can check the CHANGES file to see exactly when it was added. 2) this is really a perl question, not a mod_perl question. next time try one of the following for perl related help:

Re: deprecated our() indicated in perldoc of Getopt::Std

2001-04-20 Thread Alan E. Derhaag
Paul Johnson [EMAIL PROTECTED] writes: On Fri, Apr 20, 2001 at 02:36:32PM -0700, Alan E. Derhaag wrote: I upgraded to v5.6.1 of perl and viewed the documentation for the Getopt::Std as I wasn't familiar with its use for command line arguments on a new install function I was building. The

Re: deprecated our() indicated in perldoc of Getopt::Std

2001-04-20 Thread Paul Johnson
On Fri, Apr 20, 2001 at 03:01:25PM -0700, Alan E. Derhaag wrote: Paul Johnson [EMAIL PROTECTED] writes: You installed 5.6.1, read the docs, used "our" and found it didn't work on 5.00503, right? That's because it's new with 5.6. From where did you get the idea that it is deprecated?