From: Matt S Trout Date: Mon, 16 Sep 2019 17:53:58 +0000 (+0000) Subject: don't add nl_pre before final newline (duh) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FQ-Branch.git;a=commitdiff_plain;h=9ada12a47a20b10d260e995ba30ddd5c7d2c6075 don't add nl_pre before final newline (duh) --- diff --git a/lib/SQL/Abstract/Formatter.pm b/lib/SQL/Abstract/Formatter.pm index 2404d82..34db055 100644 --- a/lib/SQL/Abstract/Formatter.pm +++ b/lib/SQL/Abstract/Formatter.pm @@ -54,12 +54,12 @@ sub _fold_sql { $folded =~ s/\n\Z//; push @res, $folded."\n"; $line_orig = $line - = $indent0.')'.( - ($nl_post and $idx < $#parts) ? $nl_post : '' - ); + = $indent0.')'.($idx == $#parts ? '' : $nl_post); next PART; } - push @res, $line.$nl_pre."\n" if $line ne $line_orig; + if ($line ne $line_orig) { + push @res, $line.($idx == $#parts ? '' : $nl_pre)."\n"; + } if (length($line = $line_proto.$j) <= $w) { $line_proto = $line; next PART; @@ -67,7 +67,7 @@ sub _fold_sql { my $innerdent = @res ? $indent : $next_indent; my $folded = $self->_fold_sql($line_proto, $innerdent, @$p); $folded =~ s/\n\Z//; - push @res, $folded.$nl_pre."\n"; + push @res, $folded.($idx == $#parts ? '' : $nl_pre)."\n"; $line_orig = $line = $idx == $#parts ? '' : $line_proto; } return join '', @res, $line;