# flags.
my ($self) = @_;
+ $total_weld_count = 0;
+
return if ( $rOpts->{'indent-only'} );
return unless ($rOpts_add_newlines);
# Check weld exclusion rules for outer container
if ( !$do_not_weld ) {
- my $is_leading = !$self->is_welded_left_at_K($Kouter_opening);
+ my $is_leading = !defined( $rK_weld_left->{$Kouter_opening} );
if ( $self->is_excluded_weld( $KK, $is_leading ) ) {
if (DEBUG_WELD) {
$Msg .=
=over 4
+=item B<Fix incorrect sub call>
+
+This fixes an incorrect call which could cause an incorrect weld.
+
+16 Jun 2021.
+
+
=item B<Add --code-skipping option, see git #65>
Added a new option '--code-skipping', requested in git #65, in which code
without error checking. It is simmilar to --format skipping but there is no
error checking, and is useful for skipping an extended syntax.
+16 Jun 2021.
+
=item B<Handle nested print format blocks>
Perltidy was producing an error at nested print format blocks,