From: Steve Hancock Date: Mon, 18 Apr 2022 00:58:09 +0000 (-0700) Subject: minor correction to recent coding change X-Git-Tag: 20220613~57 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5196852401ff4d4dbc285076b319ec9a610c1edf;p=perltidy.git minor correction to recent coding change --- diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index 4ea7174a..3ef2d117 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -22877,7 +22877,7 @@ EOM # make () align with qw in a 'use' statement (git #93) if ( $tokens_to_go[0] eq 'use' && $types_to_go[0] eq 'k' - && $inext_to_go[$i] == $i + 1 ) + && $mate_index_to_go[$i] == $i + 1 ) { $alignment_type = 'q'; }