Bob Rogers wrote:
# New Ticket Created by Bob Rogers
# Please include the string: [perl #44567]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=44567 >
I find the following patch necessary to build PMCs in r20605. I'm
using Perl 5.8.1, so it may be that newer Perls autovivify differently.
This changed since r20358, but I'm not sure it's worth tracking down.
If I hear no objections, I will go ahead and commit this.
-- Bob Rogers
http://rgrjr.dyndns.org/
Your commit statement says:
+ $decs is not always defined, at least in older Perls.
However, your patch required that $decs be not merely defined, but true:
+ $decorators = $decs && length @$decs ? join $/ => @$decs, '' : '';
Is that what you actually intend?
kid51