Re: [perl #41163] [PATCH] suppress uninitialized value warning in config/inter/yacc.pm

2007-01-05 Thread Lee Duhem
On Thu, Jan 04, 2007 at 10:37:51PM +, Jonathan Worthington wrote: > Lee Duhem (via RT) wrote: > >This patch suppress some uninitialized value warning in > >config/inter/yacc.pm when use --maintainer option at configure. > > > I'm kinda concerned about what will happen if $3 was 0 (and was me

Re: [perl #41163] [PATCH] suppress uninitialized value warning in config/inter/yacc.pm

2007-01-04 Thread Jonathan Worthington
Lee Duhem (via RT) wrote: This patch suppress some uninitialized value warning in config/inter/yacc.pm when use --maintainer option at configure. I'm kinda concerned about what will happen if $3 was 0 (and was meant to be). Perhaps it should be: $prog_patch = defined $3 ? $3 : ""; Agree?

[perl #41163] [PATCH] suppress uninitialized value warning in config/inter/yacc.pm

2007-01-02 Thread Lee Duhem
# New Ticket Created by "Lee Duhem" # Please include the string: [perl #41163] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=41163 > This patch suppress some uninitialized value warning in config/inter/yacc.pm when use --m