--space-function-paren
--vertical-tightness=1
+==> b1302.in <==
+use vars (
+ q!$Start_Dir!
+ , # The top directory find was called with
+ q!%Future!
+ , # topdirs find will handle later
+);
+
+use vars (
+ q!$Start_Dir!
+ , # The top directory find was called with
+ q!%Future!, # topdirs find will handle later
+);
+
+==> b1302.par <==
+--extended-line-up-parentheses
+--indent-columns=3
+--maximum-line-length=42
+--paren-tightness=2
+--variable-maximum-line-length
+
==> b1303.in <==
if (
(
--indent-columns=2
--maximum-line-length=53
+==> b1306.in <==
+$oreo =
+ cookie(
+ -NAME => 'filling',
+ -VALUE => "vanilla crème",
+ -EXPIRES => '+3M'
+ , # M for month, m for minute
+ -DOMAIN => '.perl.com'
+ );
+
+$oreo = cookie(
+ -NAME => 'filling',
+ -VALUE => "vanilla crème",
+ -EXPIRES => '+3M'
+ , # M for month, m for minute
+ -DOMAIN => '.perl.com'
+);
+
+
+==> b1306.par <==
+--extended-continuation-indentation
+--extended-line-up-parentheses
+--maximum-line-length=35
+--variable-maximum-line-length
+
==> b131.in <==
unless
( open( SCORE, "+>>$Score_File" ) )
)
{
my $Kend = $K_terminal;
- if ( $has_comment && !$rOpts_ignore_side_comment_lengths ) {
+
+ # Ignore comment length if -vmll. Some rare instabilities have
+ # been found involving side comments and -vmll. So side comment
+ # lengths are ignored in this loop if -vmll is set for now.
+ # (They are still checked elsewhere). This could cause
+ # occasional excess line lengths, but -vmll use is rare and
+ # that is preferable to instability. Fixes b1302 and b1306.
+ if ( $has_comment
+ && !$rOpts_ignore_side_comment_lengths
+ && !$rOpts_variable_maximum_line_length )
+ {
$Kend = $K_last;
}
$len = $rLL->[$Kend]->[_CUMULATIVE_LENGTH_] -
$rLL->[ $K_first - 1 ]->[_CUMULATIVE_LENGTH_];
+
if ( $len > $max_prong_len ) { $max_prong_len = $len }
# TODO: if there are no sequence items in the line we could