Skip Menu |

This queue is for tickets about the Perl-Tidy CPAN distribution.

Report information
The Basics
Id: 81854
Status: resolved
Priority: 0/
Queue: Perl-Tidy

People
Owner: Nobody in particular
Requestors: parlay [...] yopmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Don't add newlines between conditions in statement modifiers
If a statement modifier contains multiple conditions, but is shorter than the maximum-line-length, don't split the conditions onto separate lines. This: return "this is a descriptive error message" if $res->is_error or not length $data; shouldn't always be turned into this: return "this is a descriptive error message" if $res->is_error or not length $data;
This was fixed in a previous release but I forgot to update the ticket.