Change 19835 by [EMAIL PROTECTED] on 2003/06/22 15:46:50
For characters beyond the BMP the $bits will be undef,
which will cause utf8_heavy.pl noise (reported by Daniel Yacob,
analysis and fix from SADAHIRO Tomoyuki)
Affected files ...
... //depot/perl/lib/utf8_heavy.pl#42 edit
Differences ...
==== //depot/perl/lib/utf8_heavy.pl#42 (text) ====
Index: perl/lib/utf8_heavy.pl
--- perl/lib/utf8_heavy.pl#41~18280~ Tue Dec 10 13:30:10 2002
+++ perl/lib/utf8_heavy.pl Sun Jun 22 08:46:50 2003
@@ -160,7 +160,7 @@
}
my $extras;
- my $bits;
+ my $bits = 0;
my $ORIG = $list;
if ($list) {
End of Patch.