--line-up-parentheses
--maximum-line-length=52
+==> b1305.in <==
+my %Map =(
+ File::Spec->catfile(
+ $Dir,"linktest_with_dir.tar"
+ ) =>
+ [
+ [ 0, qr/SECURE EXTRACT MODE/],[ 1, qr/^$/ ]
+ ],
+);
+
+my %Map =(
+ File::Spec->catfile(
+ $Dir,"linktest_with_dir.tar"
+ ) =>
+ [
+ [ 0, qr/SECURE EXTRACT MODE/],
+ [ 1, qr/^$/ ]
+ ],
+);
+
+==> b1305.par <==
+--noadd-whitespace
+--break-before-square-bracket-and-indent=2
+--break-before-square-bracket=1
+--continuation-indentation=6
+--indent-columns=2
+--maximum-line-length=53
+
==> b131.in <==
unless
( open( SCORE, "+>>$Score_File" ) )
# Only consider containers already broken
next if ( !$ris_broken_container->{$seqno} );
+ # Patch to fix issue b1305: the combination of -naws and ci>i appears
+ # to cause an instability. It should almost never occur in practice.
+ next
+ if (!$rOpts_add_whitespace
+ && $rOpts_continuation_indentation > $rOpts_indent_columns );
+
# Always ok to change ci for permanently broken containers
if ( $ris_permanently_broken->{$seqno} ) {
goto OK;