=over 4
+=item B<fix issue git #45, -wn and -vtc=n now work together>
+
+When -wn was set, the -vtc=n flag was being ignored. This was a simple fix
+made 5 Nov 2020 in 'fix issue git #45, -wn and -vtc=n now work together', 1fbc381.
+
=item B<implement request RT #133649, added parameters -kbb=s and -kba=s>
These parameters request that old breakpoints be kept before or after
--- /dev/null
+# git#45 -vtc=n and -wn were not working together
+if (
+ $self->_add_fqdn_host(
+ name => $name,
+ realm => $realm
+ )
+ )
+{
+ ...;
+}
+
+# do not stack )->pack(
+my $hlist = $control::control->Scrolled(
+ 'HList',
+ drawbranch => 1,
+ width => 20,
+ -scrollbars => 'w'
+)->pack(
+ -side => 'bottom',
+ -expand => 1
+);
+
--- /dev/null
+# git#45 -vtc=n and -wn were not working together
+if ( $self->_add_fqdn_host(
+ name => $name,
+ realm => $realm ) )
+{
+ ...;
+}
+
+# do not stack )->pack(
+my $hlist = $control::control->Scrolled(
+ 'HList',
+ drawbranch => 1,
+ width => 20,
+ -scrollbars => 'w'
+)->pack(
+ -side => 'bottom',
+ -expand => 1 );
+
../snippets22.t mangle4.mangle
../snippets22.t extrude5.def
../snippets22.t extrude5.extrude
+../snippets22.t kba1.def
+../snippets22.t kba1.kba1
../snippets3.t ce_wn1.ce_wn
../snippets3.t ce_wn1.def
../snippets3.t colin.colin
../snippets9.t rt98902.def
../snippets9.t rt98902.rt98902
../snippets9.t rt99961.def
-../snippets22.t kba1.def
-../snippets22.t kba1.kba1
+../snippets22.t git45.def
+../snippets22.t git45.git45
#14 extrude5.extrude
#15 kba1.def
#16 kba1.kba1
+#17 git45.def
+#18 git45.git45
# To locate test #13 you can search for its name or the string '#13'
----------
'def' => "",
'extrude' => "--extrude",
+ 'git45' => "-vtc=1 -wn",
'here_long' => "-l=33",
'kba1' => <<'----------',
-kbb='=> ,' -kba='=>'
'extrude5' => <<'----------',
use perl6-alpha;
$var{-y} = 1;
+----------
+
+ 'git45' => <<'----------',
+# git#45 -vtc=n and -wn were not working together
+if (
+ $self->_add_fqdn_host(
+ name => $name,
+ realm => $realm
+ )
+ )
+{
+ ...;
+}
+
+# do not stack )->pack(
+my $hlist = $control::control->Scrolled(
+ 'HList',
+ drawbranch => 1,
+ width => 20,
+ -scrollbars => 'w'
+)->pack(
+ -side => 'bottom',
+ -expand => 1
+);
+
----------
'here_long' => <<'----------',
#16...........
},
+
+ 'git45.def' => {
+ source => "git45",
+ params => "def",
+ expect => <<'#17...........',
+# git#45 -vtc=n and -wn were not working together
+if (
+ $self->_add_fqdn_host(
+ name => $name,
+ realm => $realm
+ )
+ )
+{
+ ...;
+}
+
+# do not stack )->pack(
+my $hlist = $control::control->Scrolled(
+ 'HList',
+ drawbranch => 1,
+ width => 20,
+ -scrollbars => 'w'
+)->pack(
+ -side => 'bottom',
+ -expand => 1
+);
+
+#17...........
+ },
+
+ 'git45.git45' => {
+ source => "git45",
+ params => "git45",
+ expect => <<'#18...........',
+# git#45 -vtc=n and -wn were not working together
+if ( $self->_add_fqdn_host(
+ name => $name,
+ realm => $realm ) )
+{
+ ...;
+}
+
+# do not stack )->pack(
+my $hlist = $control::control->Scrolled(
+ 'HList',
+ drawbranch => 1,
+ width => 20,
+ -scrollbars => 'w'
+)->pack(
+ -side => 'bottom',
+ -expand => 1 );
+
+#18...........
+ },
};
my $ntests = 0 + keys %{$rtests};