Subject: | Handling of => across multiple lines changed in the latest version. |
Given this code:
my $ct = Courriel::Header::ContentType->new(
mime_type => 'multipart/alternative',
attributes => { boundary => unique_boundary },
);
The previous versions tidied this to:
my $ct = Courriel::Header::ContentType->new(
mime_type => 'multipart/alternative',
attributes => { boundary => unique_boundary },
);
Note that it lines up the "=>" across lines. The latest version no longer does this and instead leaves the code unchanged. This seems to only happen when the values on the right hand side also contain a "=>" construct.