Dear Log,
I spent two hours last night chasing misbehavior in my refurbished HTML::Formatter, because the code that I thought said this:
push @{$self->{'font_size'}}, $self->{basefont_size}[-1] - 1; # smaller $self->DEBUG && print "FS-stack: @{$self->{'font_size'}}.\n";actually said this:
push @{$self->{'font_size'}}, $self->{basefont_size}[-1] - 1, # smaller $self->DEBUG && print "FS-stack: @{$self->{'font_size'}}.\n";
Meanwhile, I'm chasing an ab-initio bug in HTML::FormatPS now. Not too easy, since I don't know PS all that well, and am not totally at home with Gisle's style. I've found and solved a minute bug in leading, but not the bug I was actually looking for.
I've sometimes found that if I have an errant block of code that I just can't get to work, if I delete it and type it in again from memory it magically works.