RE: MARC::Lint update

2005-01-24 Thread Bryan Baldus
There were some unitialized variable warnings, nothing serious. 'make test' will run perl under the warnings pragma, so 'use warnings' in your module will help you catch this sort of thing early. I generally 'use warnings' or use the -w flag in the modules and scripts I've been writing. I didn't

Re: MARC::Lint update

2005-01-24 Thread Ed Summers
On Mon, Jan 24, 2005 at 08:37:41AM -0600, Bryan Baldus wrote: I generally 'use warnings' or use the -w flag in the modules and scripts I've been writing. I didn't notice it was missing. I need to add strict and warnings to CodeData, as well. In modules/package files, is it practice to leave