# We keep looping over all of the lines of this batch
# until there are no more possible recombinations
my $nmax_last = $nmax_sec + 1;
- my $reverse = 0;
while ($more_to_do) {
my $nstop = $nmax - $num_freeze;
for my $iter ( $nbeg + 1 .. $nstop ) {
- # alternating sweep direction gives symmetric results
- # for recombining lines which exceed the line length
- # such as eval {{{{.... }}}}
- my $n;
- if ($reverse) { $n = $nbeg + 1 + $nstop - $iter; }
- else { $n = $iter }
+ my $n = $iter;
#----------------------------------------------------------
# If we join the current pair of lines,
last;
}
- $reverse = 0;
-
#----------------------------------------------------------
# Recombine Section 2:
# Examine token at $iend_1 (right end of first line of pair)