my $rseqno_controlling_my_ci = $self->[_rseqno_controlling_my_ci_];
my $rlines = $self->[_rlines_];
my $rno_xci_by_seqno = $self->[_rno_xci_by_seqno_];
+ my $ris_bli_container = $self->[_ris_bli_container_];
my %available_space;
next;
}
+ # Skip if this is a -bli container (this fixes case b1065)
+ if ( $ris_bli_container->{$seqno} ) {
+ next;
+ }
+
# We are looking for opening container tokens with ci
next unless ( defined($K_opening) && $KK == $K_opening );
+
+=head1 Issues fixed after release 20210402
+
+=over 4
+
+=item B<Avoid conflict of -bli and -xci>
+
+Random testing produced a case with the combination -bli and -xci which did not
+converge. This was fixed by turning off -xci for braces under -bli control.
+
+This fixes case b1065.
+
+2 Apr 2021.
+
+=back
+
=head1 Issues fixed after release 20210111
=over 4
This fixes cases
b1033 b1036 b1037 b1038 b1042 b1043 b1044 b1045 b1046 b1047 b1051 b1052 b1061.
-30 Mar 2021.
+30 Mar 2021, 2b05051.
=item B<Fix rule for welding with barewords>