--variable-maximum-line-length
--want-break-before='='
+==> b1330.in <==
+ print $tbl->render_row(
+ [ #
+ "$STATUS->{$status}->[2] $STATUS->{$status}->[0] $RESET",
+ "$STATUS->{$status}->[2] @{[ $total->{data}->{$status} // 0 ]} $RESET",
+ ]
+ );
+
+ print $tbl->render_row(
+ [ #
+ "$STATUS->{$status}->[2] $STATUS->{$status}->[0] $RESET",
+ "$STATUS->{$status}->[2] @{[ $total->{data}->{$status} // 0 ]} $RESET", ]
+ );
+
+==> b1330.par <==
+--extended-line-up-parentheses
+--indent-columns=1
+--square-bracket-vertical-tightness-closing=1
+
==> b140.in <==
$cmd[ $i ]=[
$s, $e, $cmd, \@hunk, $i ] ;
defined($K_c)
&& $rLL->[$K_terminal]->[_TYPE_] eq ','
- # Ignore a terminal comma, causes instability (b1297)
- && ( $K_c - $K_terminal > 2
- || $rLL->[ $K_terminal + 1 ]->[_TYPE_] eq 'b' )
+ # Ignore a terminal comma, causes instability (b1297, b1330)
+ && (
+ $K_c - $K_terminal > 2
+ || ( $K_c - $K_terminal == 2
+ && $rLL->[ $K_terminal + 1 ]->[_TYPE_] ne 'b' )
+ )
)
{
my $Kend = $K_terminal;